/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url(../fonts/Apax%20Light/ApaxThree-Light-min.css);
@import url(../fonts/Apax%20Bold/ApaxThree-Bold-min.css);
@import url(../fonts/Apax%20Medium/ApaxThree-Medium-min.css);
@import url(../fonts/BrownStd%20Light/BrownStd-Light-min.css);
:root {
  --font-family: system-ui, 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;
  -webkit-transition: background-color var(--duration) var(--timing);
  transition: background-color var(--duration) var(--timing);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-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);
  -webkit-transition: border-color var(--duration) var(--timing);
  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']:-ms-input-placeholder, [type='date']:-ms-input-placeholder, [type='datetime']:-ms-input-placeholder, [type='datetime-local']:-ms-input-placeholder, [type='email']:-ms-input-placeholder, [type='month']:-ms-input-placeholder, [type='number']:-ms-input-placeholder, [type='password']:-ms-input-placeholder, [type='search']:-ms-input-placeholder, [type='tel']:-ms-input-placeholder, [type='text']:-ms-input-placeholder, [type='time']:-ms-input-placeholder, [type='url']:-ms-input-placeholder, [type='week']:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #333;
    opacity: 0.25; }
  [type='color']::-ms-input-placeholder, [type='date']::-ms-input-placeholder, [type='datetime']::-ms-input-placeholder, [type='datetime-local']::-ms-input-placeholder, [type='email']::-ms-input-placeholder, [type='month']::-ms-input-placeholder, [type='number']::-ms-input-placeholder, [type='password']::-ms-input-placeholder, [type='search']::-ms-input-placeholder, [type='tel']::-ms-input-placeholder, [type='text']::-ms-input-placeholder, [type='time']::-ms-input-placeholder, [type='url']::-ms-input-placeholder, [type='week']::-ms-input-placeholder, input:not([type])::-ms-input-placeholder, textarea::-ms-input-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; }

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  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); }

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

a {
  color: #1565c0;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  -webkit-transition: color var(--duration) var(--timing);
  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 {
  color: #0B3261; }
  .wrapper h1, .wrapper h2 {
    font-family: 'Apax'; }
  .wrapper h2 {
    font-size: 2em; }
  .wrapper p {
    font-family: 'BrownStd'; }
  .wrapper .inner {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px; }
  .wrapper section {
    padding: 40px 0; }
    .wrapper section.top {
      text-align: center;
      padding: 10px 0; }
    .wrapper section.header {
      position: relative;
      height: 0;
      padding-bottom: 30%;
      background-position: bottom center;
      background-image: url(../img/header.png);
      background-size: cover;
      background-color: #E8EFF9; }
      .wrapper section.header .text {
        width: 40%;
        position: absolute;
        top: 10%;
        right: 55%;
        font-size: 3vw; }
        .wrapper section.header .text h1 {
          font-weight: 700; }
          .wrapper section.header .text h1 span {
            font-weight: 100;
            display: block;
            font-family: 'ApaxLight'; }
    .wrapper section.map {
      background-color: #A7E8E5;
      background-image: url(../img/bg-line.png);
      background-repeat: repeat;
      background-size: 1500px;
      background-position: center center;
      font-family: 'Apax'; }
      .wrapper section.map h2 {
        font-size: 2em; }
      .wrapper section.map nav ul {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 30px 0; }
        .wrapper section.map nav ul li {
          border-radius: 100px;
          border: 2px solid #fff;
          padding: 5px 10px;
          font-size: 0.9em;
          margin: 5px;
          color: #fff;
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
          -webkit-transition: all 0.1s;
          transition: all 0.1s;
          cursor: pointer; }
          .wrapper section.map nav ul li.active {
            box-shadow: 0 0 5px 2px #fff; }
          .wrapper section.map nav ul li.talked {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#78C7F7), to(#186FD6));
            background-image: linear-gradient(to bottom, #78C7F7, #186FD6); }
          .wrapper section.map nav ul li.pos {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#8AC663), to(#529F20));
            background-image: linear-gradient(to bottom, #8AC663, #529F20); }
          .wrapper section.map nav ul li.neg {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#E25656), to(#C42121));
            background-image: linear-gradient(to bottom, #E25656, #C42121); }
      .wrapper section.map p {
        text-align: center;
        font-family: 'Apax'; }
      @media screen and (min-width: 701px) {
        .wrapper section.map .inner {
          display: -webkit-box;
          display: flex;
          -webkit-box-align: end;
                  align-items: flex-end; }
          .wrapper section.map .inner .col {
            -webkit-box-flex: 1;
                    flex: 1; } }
      .wrapper section.map .chart .row {
        display: -webkit-box;
        display: flex;
        font-size: 1.1em;
        margin: 0 0 10px;
        cursor: pointer;
        -webkit-transition: all 0.1s;
        transition: all 0.1s; }
        .wrapper section.map .chart .row.active > * {
          box-shadow: 0 0 5px 3px #fff; }
        .wrapper section.map .chart .row .motorway, .wrapper section.map .chart .row .bar {
          padding: 10px 20px;
          color: #fff; }
        .wrapper section.map .chart .row .motorway {
          width: 110px;
          margin-right: 10px; }
        .wrapper section.map .chart .row .bar_wrap {
          -webkit-box-flex: 1;
                  flex: 1;
          background-color: #fff; }
        .wrapper section.map .chart .row .motorway, .wrapper section.map .chart .row .bar_wrap, .wrapper section.map .chart .row .bar {
          border-radius: 100px; }
        .wrapper section.map .chart .row .bar {
          text-align: right;
          font-family: 'ApaxLight';
          position: relative;
          height: 100%; }
          .wrapper section.map .chart .row .bar span.small {
            position: absolute;
            left: 100%;
            color: #0B3261;
            margin-left: 5px; }
        .wrapper section.map .chart .row.talked .motorway, .wrapper section.map .chart .row.talked .bar {
          background-image: -webkit-gradient(linear, left top, left bottom, from(#78C7F7), to(#186FD6));
          background-image: linear-gradient(to bottom, #78C7F7, #186FD6); }
        .wrapper section.map .chart .row.pos .motorway, .wrapper section.map .chart .row.pos .bar {
          background-image: -webkit-gradient(linear, left top, left bottom, from(#8AC663), to(#529F20));
          background-image: linear-gradient(to bottom, #8AC663, #529F20); }
        .wrapper section.map .chart .row.neg .motorway, .wrapper section.map .chart .row.neg .bar {
          background-image: -webkit-gradient(linear, left top, left bottom, from(#E25656), to(#C42121));
          background-image: linear-gradient(to bottom, #E25656, #C42121); }
      @media screen and (max-width: 700px) {
        .wrapper section.map .chart {
          font-size: 0.8em; }
          .wrapper section.map .chart .row .motorway {
            width: 70px; }
          .wrapper section.map .chart .row .motorway, .wrapper section.map .chart .row .bar {
            padding: 5px 10px; } }
    .wrapper section.table .inner .text {
      max-width: 550px; }
    .wrapper section.table .inner .table_wrap {
      margin: 40px 0; }
      .wrapper section.table .inner .table_wrap input {
        max-width: 200px;
        background-color: #D4D4D4;
        border-radius: 5px;
        border: 0; }
      .wrapper section.table .inner .table_wrap .header {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: end;
                align-items: flex-end; }
        .wrapper section.table .inner .table_wrap .header > * {
          width: calc(100%/8);
          margin: 0 5px; }
          .wrapper section.table .inner .table_wrap .header > * img {
            display: block;
            width: 40%;
            margin: 0 auto 10px; }
          .wrapper section.table .inner .table_wrap .header > * .label {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#78C7F7), to(#186FD6));
            background-image: linear-gradient(to bottom, #78C7F7, #186FD6);
            border-radius: 100px;
            color: #fff;
            padding: 5px 10px;
            overflow: hidden;
            white-space: nowrap;
            font-size: 0.8em; }
          .wrapper section.table .inner .table_wrap .header > *.active .label {
            position: relative; }
            .wrapper section.table .inner .table_wrap .header > *.active .label:after {
              z-index: 9;
              position: absolute;
              right: 7px;
              top: 10px;
              content: "";
              border: solid #FFD300;
              border-width: 0 3px 3px 0;
              padding: 3px;
              display: block;
              -webkit-transform: rotate(-135deg);
                      transform: rotate(-135deg);
              -webkit-transition: all 0.1s;
              transition: all 0.1s; }
            .wrapper section.table .inner .table_wrap .header > *.active .label.reverse:after {
              -webkit-transform: rotate(45deg);
                      transform: rotate(45deg);
              top: 7px; }
        @media screen and (max-width: 700px) {
          .wrapper section.table .inner .table_wrap .header {
            display: none; } }
      .wrapper section.table .inner .table_wrap .body {
        padding-top: 10px;
        margin-top: 20px;
        border-top: 1px solid #0B3261;
        max-height: 500px;
        overflow: scroll; }
        .wrapper section.table .inner .table_wrap .body .row .desktop {
          display: none;
          margin-bottom: 5px; }
          .wrapper section.table .inner .table_wrap .body .row .desktop > * {
            width: calc(100%/8);
            padding: 5px 10px;
            background-color: #e4f4fd; }
            .wrapper section.table .inner .table_wrap .body .row .desktop > *:nth-child(1) {
              font-weight: 700; }
            .wrapper section.table .inner .table_wrap .body .row .desktop > *:nth-child(2n) {
              background-color: #c9e9fc; }
        .wrapper section.table .inner .table_wrap .body .row .mobile {
          margin-bottom: 10px; }
          .wrapper section.table .inner .table_wrap .body .row .mobile .top {
            background-color: #e4f4fd;
            padding: 10px;
            font-weight: 700;
            position: relative; }
            .wrapper section.table .inner .table_wrap .body .row .mobile .top:before {
              content: '';
              display: block;
              height: 30px;
              width: 30px;
              position: absolute;
              right: 10px;
              top: 5px;
              border-radius: 100px;
              background-image: -webkit-gradient(linear, left top, left bottom, from(#78C7F7), to(#186FD6));
              background-image: linear-gradient(to bottom, #78C7F7, #186FD6); }
            .wrapper section.table .inner .table_wrap .body .row .mobile .top:after {
              content: '';
              display: block;
              height: 10px;
              width: 10px;
              position: absolute;
              right: 20px;
              top: 13px;
              border: solid #FFD300;
              border-width: 0 3px 3px 0;
              padding: 3px;
              -webkit-transform: rotate(45deg);
                      transform: rotate(45deg);
              -webkit-transition: all 0.1s;
              transition: all 0.1s; }
          .wrapper section.table .inner .table_wrap .body .row .mobile .bottom {
            display: none;
            padding: 10px;
            background-color: #c9e9fc; }
            .wrapper section.table .inner .table_wrap .body .row .mobile .bottom > div {
              display: -webkit-box;
              display: flex;
              -webkit-box-align: center;
                      align-items: center;
              margin-bottom: 5px; }
              .wrapper section.table .inner .table_wrap .body .row .mobile .bottom > div .icon {
                width: 30px;
                margin-right: 10px; }
                .wrapper section.table .inner .table_wrap .body .row .mobile .bottom > div .icon img {
                  float: left; }
              .wrapper section.table .inner .table_wrap .body .row .mobile .bottom > div > span .bold {
                font-weight: 700;
                margin-left: 2px; }
          .wrapper section.table .inner .table_wrap .body .row .mobile.active .top:after {
            -webkit-transform: rotate(225deg);
                    transform: rotate(225deg);
            top: 16px; }
          .wrapper section.table .inner .table_wrap .body .row .mobile.active .bottom {
            display: block; }
        @media screen and (min-width: 701px) {
          .wrapper section.table .inner .table_wrap .body .row .mobile {
            display: none; }
          .wrapper section.table .inner .table_wrap .body .row .desktop {
            display: -webkit-box;
            display: flex; } }
    @media screen and (max-width: 700px) {
      .wrapper section.table .inner .table_scroll {
        width: 100%;
        overflow: auto; }
        .wrapper section.table .inner .table_scroll .table_wrap {
          width: 700px;
          font-size: .8em; } }
    .wrapper section.table .inner .cta {
      margin: 40px 0; }
      .wrapper section.table .inner .cta a {
        color: #0B3261; }
    .wrapper section.table .inner .cc {
      text-align: center;
      margin: 40px 0;
      font-size: 0.7em; }
    .wrapper section.table .inner .logo {
      text-align: center; }
