/*
100	Thin (Hairline)
200	Extra Light (Ultra Light)
300	Light
400	Normal (Regular)
500	Medium
600	Semi Bold (Demi Bold)
700	Bold
800	Extra Bold (Ultra Bold)
900	Black (Heavy)
950	Extra Black (Ultra Black)
*/

@font-face {
    font-family: "Circular Std";
    src: url("./fonts/circular-std/CircularStd-Book.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Circular Std";
    src: url("./fonts/circular-std/CircularStd-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Circular Std";
    src: url("./fonts/circular-std/CircularStd-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Circular Std";
    src: url("./fonts/circular-std/CircularStd-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

html {
    font-size: 62.5%;	/* 1 rem is now 62.5% of 16px (borwser default); 1rem ~= 10px*/
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
    height: 100%;
    width: 100%;
    overflow: hidden;
}

html::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

html * {
	box-sizing: border-box;
}

body {
    color: #210343;
    font-family: "Circular Std";
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.38;

    height: 100%;
    padding: 0;
    overflow: auto;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

h2, .h2 {
    font-size: 9.5rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
}

h3, .h3 {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.125;
}

h4, .h4 {
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.266;
}

h5, .h5{
    font-size: 3.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.277;
}

h6, h6 {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.25;
}

a {
    color: #009FDF;
}
  
a:hover {
    text-decoration: none;
}

.body-copy-small {
    color: #210343;
    font-family: "Circular Std";
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.571;
}

.caption {
    color: #24AAC5;
    font-family: "Circular Std";
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2.57px;
    line-height: 1.833;
}

.list-style-none {
    list-style-type: none !important;
}

.text-offscreen {
    margin: 0;
    height: 0;
    line-height: 0;
    text-indent: -10000em;
}

.text-hide {
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    color: transparent;
}

/* .disable-pointer {
    pointer-events:none!important;
} */

.break {
    flex-basis: 100%;
    height: 0;
}

.dropdown-toggle::after {
    display: none;
}

.anim-so.run {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.anim-so {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.anim-o.run {
    opacity: 1;
}

.anim-o {
    opacity: 0;
}

.anim-to.run {
    opacity: 1;
    transform: translateY(0);
}
  
.anim-to {
    opacity: 0;
    transform: translateY(50px);
}

.anim-ro.run {
    opacity: 1;
    transform: translateY(0);
}

.anim-ro {
    opacity: 0;
    transform: translateX(-50px);
}

.anim-lo.run {
    opacity: 1;
    transform: translateY(0);
}
.anim-lo {
    opacity: 0;
    transform: translateX(50px);
}

.anim-o, .anim-to, .anim-ro, .anim-lo {
    -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

.anim-d {
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms;
}

.anim-d-100m {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.anim-d-150m {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}

.anim-d-200m {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.tooltip {
    color: #FFFFFF;
    font-family: "Circular Std";
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.375;    
}

.tooltip-inner {
    border-radius: 10px;
    padding: 9px 30px;
    background-color: #210343;
}

.tooltip .arrow {
    display: none;
}

.modal-backdrop {
    /* bug fix - no overlay */    
    display: none;    
}

.breadcrumb-container {
    visibility: hidden;
}

.breadcrumb-container.show {
    position: fixed;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    visibility: visible;
    z-index: 10;
}

.breadcrumb-container.no-float {
    visibility: visible;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
}
  
.breadcrumb a,
.breadcrumb .breadcrumb-item {
    opacity: 0.5;
    color: #EB0457;
    font-size: 1.2rem;
    letter-spacing: 2.57px;
    line-height: 1.833;
    text-transform: uppercase;
}

.breadcrumb .breadcrumb-item.active {
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #EB0457;
    background-color: transparent;
    font-size: 1.2rem;
    letter-spacing: 2.57px;
    line-height: 1.833;
}

.casualties {
    display: none;
}

.casualties.show {
    display: block;
}

.seriousCasualties {
    display: none;
}

.seriousCasualties.show {
    display: block;
}
  

.ImgContainer img {
    width: 100%;
    object-fit: cover;
}

.BgOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: #000000;
}

.Link {
    display: block;
    border-radius: 5px;
    padding: 25px 40px;
    background-color: #EB0457;

    -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

.Link:hover {
    background-color: #24AAC5;
}

.Link-label {
    color: white;
}

#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    /* z-index: 10; */
    z-index: -1;
}

.Header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
}

.MainMenu {
    position: absolute;
    top: 30px;
    left: 35px;
}

.MainMenu-open {
    display: block;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0ms;
}

.MainMenu-open:hover {
    transform: scale(1.2);
}

.MainMenu-close {
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0ms;
}

.MainMenu-close:hover {
    transform: scale(1.2);
}

.MainMenu .modal-dialog {
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: unset;
}

.MainMenu .modal-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    border-radius: 0;
    padding: 0;
    height: 100%;
    background: transparent;
}

.MainMenu .modal-wrapper {
    display: flex;
    height: 100%;
}

.MainMenu .modal-header {
    position: absolute;
    top: 40px;
    left: 40px;
    border: 0;
    padding: 0;
}

.MainMenu .modal-body {
    display: flex;
    align-items: center;
    margin-left: 0;
    padding: 0 84px 0 50px;
    background-image: url(../images/weird-shape.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.MainMenu-list {
    position: relative;
    margin: 0;
    padding: 0;
}

.MainMenu-list::after {
    content: '';
    position: absolute;
    border: 1px dashed #FFAAC9;
    width: 1px;
    top: 0;
    left: 0;
    height: calc(100% - 30px);
    margin-top: 15px;
}

.MainMenu-item {
    margin-bottom: 20px;
}

.MainMenu-item:last-child {
    margin-bottom: 0;
}

.MainMenu-item a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 4px 0 4px 30px;
    border: none;
    background: transparent;
}

.MainMenu-item a:before {
    position: absolute;
    border-radius: 50%;
    content: "";
    background-color: #FFAAC9;
    top: 4px;
    left: -14px;
    height: 30px;
    width: 30px;
    transform: scale(0.5);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.MainMenu-item.active > a:before {
    display: block;
    left: -15px;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/current.svg) no-repeat right center;
    z-index: 1;
    transform: scale(0.999);
}

.MainMenu-name {
    color: white;
    font-size: 2.4rem;
    line-height: 1.25;
    white-space: nowrap;
}

.SubMenu-list {
    margin: 20px 0 0 0;
    padding: 0;
}

.SubMenu-item {
    margin-bottom: 20px;
}

.SubMenu-item:last-child {
    margin-bottom: 0;
}

.SubMenu-item a {
    padding-left: 60px;
}

.SubMenu-item a:before {
    top: 1px;
    transform-origin: center;
    transform: scale(0.3);
}

.SubMenu-item.active > a:before {
    display: block;
    left: -15px;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/current.svg) no-repeat right center;
    z-index: 1;
    transform: scale(0.999); /* 1 cause a bit of moving up */
}

.SubMenu-name {
    color: white;
}

.QuickNav {
    position: relative;
    margin: 0;
    padding: 0;
}

.QuickNav::after {
    content: '';
    position: absolute;
    border: 1px dashed #FFAAC9;
    width: 1px;
    top: 0;
    left: 60px;
    height: calc(100% - 30px);
    margin-top: 15px;
    left: 13px;
    z-index: -1;
}

.QuickNav-item {
    margin-bottom: 45px;
}

.QuickNav-item:last-child {
    margin-bottom: 0;
}

.QuickNav-item a {
    display: block;
    position: relative;
    width: 29px;
    height: 29px;
    padding: 0;
    border: none;
    background: transparent;
}

.QuickNav-item a:before {
    position: absolute;
    border-radius: 50%;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #FFAAC9;
    transform: scale(0.448);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.QuickNav-item.active a:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/current.svg) no-repeat right center;
    transform: scale(1);
}

.QuickNav-item:not(.active) .QuickNav-name {
    /* display: none; */
}

.QuickNav-item .QuickNav-name {
    height: 0;
    overflow: hidden;
    transition: height 0.8s;
    opacity: 0;
}

.QuickNav-item.active .QuickNav-name {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    white-space: nowrap;
    color: #210343;
    font-size: 14px;
    line-height: 1.571;

    opacity: 1;
    text-align: center;
    visibility: visible;
    height: 128px;
}

#QuickNav-home.active .QuickNav-name {
    height: 45px
}

#QuickNav-statsInDepth.active .QuickNav-name {
    height: 120px;
}

.QuickNav.blue-screen::after {
    border: 1px dashed #5E0348;
}

.QuickNav.blue-screen .QuickNav-item.active .QuickNav-name {
    color: white;
}

.QuickNav.blue-screen .QuickNav-item.active a:before {
    background: url(../images/current-blue.svg) no-repeat right center
}

.QuickNav.blue-screen .QuickNav-item a:before {
    background-color: #5E0348;
}

#Main {
    /* position: relative; */
    /* position: fixed; */
    
    width: 100%;
    height: 100vh;
    background-color: white;
    overflow: hidden;
}

.ScreenContainer {
    /* position: relative; */
    width: 100%;
    /* height: 100vh; */
    height: 100%;
    overflow: hidden;
}

.ScreenContainer-wrapper {
    width: 100%;
    height: 100%;
}

.Screen {
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    /* position: fixed; */
    /* top: 100%; */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-height: 100%;
    background: transparent;
    z-index: -1;
    background-color: white;
}

.Screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ScreenContainerHorizontal {
    display: flex;
    flex-direction: column;
    /* position: relative; */
    /* height: 100vh; */
    /* background-color: white; */
    background: transparent
}

.ScreenContainerHorizontal .ScreenContainer-wrapper {
    display: flex;
}

.ScreenContainerHorizontal .ScreenContainer {
    height: auto;
    flex-grow: 1;
}

.ScreenContainerHorizontal .ScreenContainer .Screen {
    /* position: static; */
    height: calc(100% - 83px)!important;
}

.PaddingLeft {
    flex: 0 0 100px;
}

.PaddingRight {
    flex: 0 0 100px;
}

.PaddingTop {
    flex: 0 0 100px;
    width: 100%;


    
    /* border: 1px solid pink; */
}

.PaddingBottom {
    flex: 0 0 100px;
    width: 100%;


    
    /* border: 1px solid green; */
}

.ScreenContainerHorizontal .PaddingLeft {
    flex: 0 0 100px;
}

.ScreenContainerHorizontal .PaddingRight {
    flex: 0 0 100px;
}

.ScreenContainerHorizontal .PaddingTop {
    flex: 0 0 70px;
    width: 100%;
}

.ScreenContainerHorizontal .PaddingBottom {
    flex: 0 0 70px;
    width: 100%;
}

.Pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: absolute; */
    position: fixed;
    left: 0;
    bottom: -83px;
    width: 100%;
    background-color: #210343;
    z-index: 2;
}

.DotsPagination {
    padding: 25px 0 30px;
}

.DotsPagination-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.DotsPagination-item {
    position: relative;
    margin-right: 50px;
    padding-bottom: 5px;
}

.DotsPagination-item:last-child {
    margin-right: 0;
}

.DotsPagination-item.active::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    content: "";
    height: 4px;
    width: 50px;
    background-color: #24AAC5;
    animation: pagination-indicator 0.7s linear;
}

.DotsPagination-item.active .DotsPagination-dot {
    opacity: 1;
}

.DotsPagination-dot {
    color: white;
    opacity: 0.5;
    font-family: "Circular Std";
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.571;
}

.DotsPagination-dot:hover {
    opacity: 1;
    color: white;
}

.Pagination-arrow:focus {
    outline: 0;
}

.Pagination-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: url(../images/arrow-forward-red.svg) no-repeat right center;
}

.Pagination-prev:before {
    background: url(../images/arrow-back-red.svg) no-repeat;
}

.Pagination-prev, .Pagination-next {
    font-size: 0;
    line-height: 0;
    width: 25px;
    height: 25px;
    padding: 0;
    border: none;
    background: transparent;
    visibility: visible;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0ms;
}

.Pagination-prev {
    margin-right: 40px;
}

.Pagination-prev:hover {
    /* transform: translateX(-10px) scale(1.2); */
    transform: scale(1.3);
}

.Pagination-next {
    margin-left: 40px;
}

.Pagination-next:hover {
    /* transform: translateX(10px) scale(1.2); */
    transform: scale(1.3);
}

.Pagination-prev.btn-disabled, .Pagination-next.btn-disabled {
    visibility: hidden;
}

.LockContainer {
    display: none;
    /* position: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    width: 100%;
    height: 100%;
    z-index: 1061;
    background-color: #210343;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.3;
    color: white;
    touch-action: none;
}

.LockContainer.show {
    display: flex;
}

.LockContainer-heading {
    margin-bottom: 240px;
    width: 267px;
    height: 122px;
    text-align: center;
}

.LockContainer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.LockContainer-heading .Home-logo {
    width: 100%;
    max-width: unset;
}

.LockContainer-text {
    width: 100%;
    max-width: 385px;
    text-align: center;
}

.LockContainer-text.tablet {
    display: none;
}

.LockContainer-anim.tablet {
    display: none;
}

/* #TabletFlipAnim { */
.LockContainer-anim {
    margin-bottom: 30px;
    width: 162px;
    height: 162px;
}

.SeriousInjuriesDef {
    display: none;
    /* position: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    width: 100%;
    height: 100%;
    z-index: 1061;
    /* background-color: #210343; */
    background-color: rgba(0,0,0,0.9);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.3;
    color: white;
    touch-action: none;
}

.SeriousInjuriesDef.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.SeriousInjuriesDef-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border: 1px solid white;
    border-radius: 15px;
    padding: 55px 30px 30px;
    background-color: #210343;
}

.SeriousInjuriesDef-text {
    margin-bottom: 0;
}

.SeriousInjuriesDef-close {
    position: absolute;
    top: 12px;
    right: 18px;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0ms;
}

.SeriousInjuriesDef-close:hover {
    transform: scale(1.2);
}

#lock-btn {
    border: 1.5px solid #FFFFFF;
    border-radius: 27.5px;
    padding: 6px 12px;
    background-color: #000000;
    box-shadow: 5px 10px 15px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 38px;
    color: white;
}

.Hero {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Hero-heading {
    margin-bottom: 55px;
    /* font-size: min(5.72vw, 8rem); */
    /* line-height: 1.125; */
    text-align: center;
}

.Hero .ImgContainer {
    margin-bottom: 55px;
    width: 32.98vw;
    max-width: 463px;
}

.StatsContainer {
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    /* height: 100%; */
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: -1;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    /* visibility: hidden; */
}

.StatsContainer::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.StatsContainer.show {
    z-index: 9;
    visibility: visible;
}
 
/* .StatsContainer .ScreenContainerHorizontal .Screen-content .PaddingTop { */
.Stats .ScreenContainerHorizontal .Screen-content .PaddingTop {
    flex-basis: 45px;
}

/* .StatsContainer .ScreenContainerHorizontal .Screen-content .PaddingBottom { */
.Stats .ScreenContainerHorizontal .Screen-content .PaddingBottom {
    flex-basis: 30px;
}

.StatsHero {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.StatsHero .ImgContainer {
    margin-bottom: 55px;
    /* width: 100%; */
    width: 34.62vw;
    max-width: 485px;
}

.StatsHero .ImgContainer img {
    object-fit: contain;
}

.StatsHero-heading {
    margin-bottom: 55px;
    /* font-size: 8rem; */
    /* font-size: 5.71vw; */
    /* font-size: min(5.72vw, 8rem); */
    /* line-height: 1.125; */
}

.StatsHero .Link-label {
    font-size: 2rem;
    line-height: 1.3;
}

.KeyStats {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.KeyStats.reverse {
    flex-direction: row-reverse;
}

.KeyStats.reverse .KeyStatsHeading {
    margin-right: 0;
}

.KeyStats.reverse .KeyStats-img-container {
    margin-right: 85px;
}

.KeyStats.portrait {
    flex-direction: column;
}

.KeyStats.portrait .KeyStatsHeading {
    margin-right: 0;
}

.KeyStats.portrait .KeyStats-img-container {
    flex-basis: 100%;
}

.KeyStats.portrait.reverse {
    flex-direction: column-reverse;
}

.KeyStats.portrait.reverse .KeyStats-img-container {
    margin-bottom: 85px;
    width: 100%;
    max-width: 496px;
}

.KeyStats > * {
    margin-right: 85px;
}

.KeyStats > *:last-child {
    margin-right: 0;
}

.KeyStatsHeading {
    /* flex: 1 1 500px; */
    flex: 1 1 41%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    min-width: 500px;
    max-width: 600px;
    text-align: center;
    /* font-size: 6rem; */
    /* font-size: min(4.277vw, 6rem); */
    font-size: 45px;
    line-height: 1.1;
}

.KeyStatsHeading-value {
    display: flex;
    color: #EB0457;
    /* font-size: 9.5rem; */
    font-size: min(6.772vw, 9.5rem);
    line-height: 1;
}

.KeyStatsHeading-string:not(:last-child) {
    margin-right: 10px;
}

.KeyStats-img-container {
    /* flex: 1 1 0; */
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    /* max-width: 117px; */
}

.KeyStats-img-container > * {
    width: 100%;
    object-fit: contain;
}

.KeyStats-img-container > * {
    margin-right: 70px;
}

.KeyStats-img-container > *:last-child {
    margin-right: 0;
}

.AllRoadPassengersAndDriversKeyStats .KeyStats-img-container { 
    position: relative;
    max-width: unset!important;
    height: auto!important;
    flex-basis: auto!important;
}

.AllRoadPassengersAndDriversKeyStats .KeyStats-img-container img:not(.invisible-img) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 496px;
}

.AllRoadPassengersAndDriversKeyStats .KeyStats-img-container .invisible-img {
    visibility: hidden;
    max-width: 496px;
}

.AllRoadPedalCyclingKeyStats .KeyStats-img-container {
    /* align-items: flex-end; */
    overflow: visible;
    max-width: 335px;
    /* max-height: calc(100vh - 234px); */
}

/* .AllRoadPedalCyclingKeyStats .KeyStats-img-container > * { */
.AllRoadPedalCyclingKeyStats .ImgContainerGroup > * {
    max-width: 230px;
}

.AllRoadPedalCyclingKeyStats .KeyStats-img-container > *:last-child {
    /* width: 32px; */
}

.AllRoadPedalCyclingKeyStats .ImgContainerGroup {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.AllRoadPedalCyclingKeyStats .ImgContainerGroup > * {
    margin-right: 70px;
}

.AllRoadPedalCyclingKeyStats .ImgContainerGroup > *:last-child {
    margin-right: 0;
}

.PassengerMaleFemaleKeyStats .KeyStats-img-container {
    max-width: 480px;
}

.PassengerMaleFemaleKeyStats .KeyStats-img-container {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    overflow: visible;
}

.PassengerMaleFemaleKeyStats-age-group-list {
    display: flex;
    justify-content: space-between;
    margin: 0 0 25px 0;
    padding: 0;
    font-size: 3.6rem;
    line-height: 1.277;
}

.PassengerMaleFemaleKeyStats-age-group-list-item:nth-child(2) {
    position: relative;
}

.PassengerMaleFemaleKeyStats-age-group-list-item:nth-child(2):after {
    content: "Age";
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.375;
}

.PassengerMaleFemaleKeyStats-age-group-label {
    text-align: center;
}

#PassengerAnimation {
    margin-right: 0!important;
    margin-bottom: 32px;
}

.PassengerMetroRegionalKeyStats .KeyStats-img-container {
    max-width: 480px;
}

.DriversMetroRegionalKeyStats .KeyStats-img-container {
    max-width: 515px;
}

.DriversAgeKeyStats .KeyStats-img-container {
    max-width: 440px;
}

.DriversMetroRegionalKeyStats .KeyStats-img-container {
    position: relative;
    overflow: visible;
    height: auto;
}

.DriversMetroRegionalKeyStats .KeyStats-img-container .Cow {
    position: absolute;
    top: 45%;
    left: 20px;
    /* transform: translateX(-50%); */
    width: 50%;
    max-width: 426px;
}

.AllRoadPassengersAndDriversKeyStats .KeyStats-img-container {
    margin-right: 0!important; 
    overflow: visible;
}

#Counter4Outof10 {
    width: 100%;
    height: 104px;
}

.PedalCyclistsHelmetKeyStats {
    flex: 1 1 auto;
    max-height: 100%;
}

.PedalCyclistsHelmetKeyStats-paddingTop {
    flex-basis: 77px;
}

.PedalCyclistsHelmetKeyStats-paddingBottom {
    flex-basis: 65px;
}

.PedalCyclistsHelmetKeyStats .KeyStats-img-container {
    margin-right: 0;
    width: 100%;
    overflow:inherit;
}

.PedalCyclistsHelmetKeyStats .KeyStats-img-container:first-child {
    /* margin-bottom: 80px; */
}

.PedalCyclistsHelmetKeyStats .KeyStats-img-container > * {
    flex: 1 1 auto;
    margin-right: 90px;
    width: 10%;
    max-width: 168px;
    max-height: 171px;
}

.PedalCyclistsHelmetKeyStats .KeyStats-img-container > *:last-child {
    margin-right: 0;
}

.PedalCyclistsHelmetKeyStats .KeyStatsHeading {
    flex: 1 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
    max-width: 712px;
}

.PedalCyclistsAgeCasualtiesKeyStats .KeyStats-img-container {
    position: relative;
    overflow: visible;
    height: auto;
    max-width: 463px;
}

.PedalCyclistsAgeCasualtiesKeyStats .KeyStats-img-container .PadelMale {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 348px;
}

.PedalCyclistsAgeCasualtiesKeyStats .KeyStats-img-container #PieChart {
    margin-right: 0;
}

.PedestrianAgeKeyStats {
    /* height: 100%; */
}

.PedestrianAgeKeyStats .KeyStats-img-container {
    max-width: 270px;
    max-height: 585px;
    overflow: visible;
}

.PedestrianAgeKeyStats .KeyStats-img-container-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 108px;
    max-width: 69px;
    height: 100%;
}

.PedestrianAgeKeyStats .KeyStats-img-container-col:last-child {
    margin-right: 0;
}

.PedestrianAgeKeyStats .KeyStats-img-container-col > * {
    flex: 1 1 auto;
    margin-bottom: 12px;
    width: auto;
    height: 20%;
    max-width: 69px;
}

.PedestrianAgeKeyStats .KeyStats-img-container-col > *:last-child {
    margin-bottom: 0;
}

.PedestrianAreaKeyStats .KeyStats-img-container {
    justify-content: space-between;
    width: 100%;
    max-width: 455px;
    max-height: calc(100vh - 135px);
}

.PedestrianAreaKeyStats .KeyStats-img-container-col {
    margin-right: 0;
    max-width: 15px;
    max-height: 100%;
}

.PedestrianAreaKeyStats .KeyStats-img-container-col > * {
    flex: 1 1 0;
    margin-bottom: 5px;
    width: 100%;
    /* max-width: 15px; */
    max-height: 27px;
}

.PedestrianAreaKeyStats .KeyStats-img-container-col > *:last-child {
    margin-bottom: 0;
}

/* .PedestrianAreaKeyStats .KeyStats-img-container-row {
    flex: 1 1 auto;
    max-height: 27px;


    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-right: 0;
    margin-bottom: 5px;
}

.PedestrianAreaKeyStats .KeyStats-img-container-row:last-child {
    margin-bottom: 0;
}

.PedestrianAreaKeyStats .KeyStats-img-container-row > * {
    flex: 1 1 0;
    width: auto;
    height: 100%;
    max-width: 15px;
    max-height: 27px;
} */

/* .PedestrianAreaKeyStats .KeyStats-img-container-row:nth-child(even) > * {
    max-width: 8px;
} */

.Heading3WithScrollIcon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Heading3WithScrollIcon-heading {
    margin-bottom: 54px;
    text-align: center;
    max-width: 750px;
}

.AllRoadPedestriansKeyStats .KeyStats-img-container {
    max-width: 176px;
    max-height: calc(100vh - 140px);
}

.AllRoadPassengersAndDriversKeyStats .KeyStatsHeading {
    max-width: 910px;
}

.AllRoadMotorcyclistsKeyStats .KeyStats-img-container {
    max-width: 480px;
}

.NextChaper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.NextChaper-caption {
    margin-bottom: 6px;
    color: #24AAC5;
    font-size: 1.2rem;
    letter-spacing: 2.57px;
    line-height: 1.8333;
    text-transform: uppercase;
}

.NextChaper-heading {
    margin-bottom: 50px;
}

.BackToHomeLink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.BackToHomeLink .ImgContainer {
    /* flex: 1 1 0; */
    margin-bottom: 40px;
    width: 100%;
}

.ScrollIcon {
    position: relative;
}

.ScrollIcon-scroller {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-icon-scroller-up-down 4s linear;
    animation-iteration-count: infinite;
}

.ScrollIconWithText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ScrollIconWithText-text {
    color: #EB0457;
  font-size: 2rem;
  line-height: 1.3;
}

.ScrollIconWithText .ScrollIcon {
    margin-bottom: 10px;
}

.Tooltip {
    position: relative;
}

.Tooltip-label {
    margin-bottom: 0;
}

.Tooltip-content {
    display: none;
    position: absolute;
    top: -15px;
    left: 45px;
    border-radius: 10px;
    padding: 14px 20px;
    color: white;
    background-color: #EB0457;
    white-space: nowrap;
    font-size: 1.4rem;
    line-height: 1.57;
}

.Tooltip-content:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 15px solid #EB0457;
}

.Tooltip-content.show {
    display: block;
}

.Tooltip-content a {
    color: #e40000;
}

.Tooltip-icon {
    padding: 2px;
}

.SelectContainer {
    display: none;
}

.SelectContainer.show {
    display: block;
}

.SelectContainer .btn.dropdown-toggle {
    margin: 0;
    border: 0;
    padding: 0;
    visibility: hidden;
    height: 0;
    font-size: 0;
    line-height: 0;
}

#Intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: grey; */
    background-color: white;
    z-index: 10;
    overflow: hidden;
}

#Intro .SkipIntroButton {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

#Intro .SkipIntroButton .Button {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.25;
    color: #EB0457;
    background-color: white;
}

#Intro .SkipIntroButton .Button:hover {
    opacity: 0.5;
}

#Home .Screen {
    background: transparent;
    z-index: 1;
}

#Home .PaddingLeft {
    flex: 1 1 100px;
}

#Home .PaddingRight,
#Home .PaddingTop,
#Home .PaddingBottom {
    flex-basis: 0;
}

#Home .Screen-content {
    /* flex: 0 1 51.49vw; */
    flex: 0 1 725px;
}

.Home-content {
    flex-basis: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    /* justify-content: flex-end; */
    padding-right: 130px;
    /* padding-bottom: 140px; */
    /* padding-right: 9.3vw;
    padding-bottom: 10vw; */
    /* background-image: url(../images/purple-blob.svg);
    background-repeat: no-repeat; */
    /* background-position: 0 -50px; */
    /* background-position: 0 -10px;
    background-size: cover; */
}

.Home-content-blob {
    position: absolute; 
    top: -40px; 
    left: -20px; 
    height: calc(100% + 40px); 
    z-index: -1;
}

.Home-content-wrapper { 
    /* margin-top: 205px; */
    max-width: 385px;
    /* max-width: 27.422vw; */


    margin-top: 21.2vh;
}

.Home-heading {
    margin-bottom: 30px;
}

.Home-logo {
    width: 25.42vw;
    max-width: 356px;
}

.Home-text {
    margin-bottom: 30px;
    color: white;
    font-size: 2rem;
    line-height: 1.3;
}

.AllRoadCasualtiesSideways {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.AllRoadCasualtiesSideways-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.AllRoadCasualtiesSideways-headingWithTootip {
    display: flex;
    margin-bottom: 13px;
}

.AllRoadCasualtiesSideways-headingWithTootip .Tooltip {
    margin-top: 5px;
}

.AllRoadCasualtiesSideways-heading {
    margin-right: 9px;
    margin-bottom: 0;
    font-size: 6rem;
    line-height: 1.1;
}

.AllRoadCasualtiesSideways-headingWithTootip > .btn:hover, 
.AllRoadCasualtiesSideways-headingWithTootip > .btn:focus, 
.AllRoadCasualtiesSideways-headingWithTootip > .btn:active, 
.AllRoadCasualtiesSideways-headingWithTootip > .btn:active:focus {
    background-color: white!important;
    border-color: white!important;
    box-shadow: none!important;
    outline: 0!important;
}

.AllRoadCasualtiesSideways-headingWithTootip > .btn {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background-color: white;
    background-image: url(../images/tool-tip.svg);
    background-repeat: no-repeat;
    background-position: left center;
    /* transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0ms; */
}

.AllRoadCasualtiesSideways-totalNum {
    margin-bottom: 0;
    color: #24AAC5;
    font-size: 2.4rem;
    line-height: 1.25;
}

.AllRoadCasualtiesSideways-body {
    position: relative;
    flex: 1 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.StatsCasualtiesSideways {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.StatsCasualtiesSideways-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.StatsCasualtiesSideways-headingWithTootip {
    display: flex;
    margin-bottom: 13px;
}

.StatsCasualtiesSideways-headingWithTootip .Tooltip {
    margin-top: 5px;
}

.StatsCasualtiesSideways-heading {
    margin-right: 9px;
    margin-bottom: 0;
    font-size: 6rem;
    line-height: 1.1;
}

.StatsCasualtiesSideways-headingWithTootip > .btn:hover, 
.StatsCasualtiesSideways-headingWithTootip > .btn:focus, 
.StatsCasualtiesSideways-headingWithTootip > .btn:active, 
.StatsCasualtiesSideways-headingWithTootip > .btn:active:focus {
    background-color: white!important;
    border-color: white!important;
    box-shadow: none!important;
    outline: 0!important;
}

.StatsCasualtiesSideways-headingWithTootip > .btn {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background-color: white;
    background-image: url(../images/tool-tip.svg);
    background-repeat: no-repeat;
    background-position: left center;
    /* transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0ms; */
}

.StatsCasualtiesSideways-totalNum {
    margin-bottom: 0;
    color: #24AAC5;
    font-size: 2.4rem;
    line-height: 1.25;
}

.StatsCasualtiesSideways-body {
    flex: 1 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.StatsCasualtiesSideways-body .PaddingTop {
    flex: 1 0 50px!important;
}

.StatsCasualtiesSideways-body .PaddingBottom {
    flex: 1 0 50px!important;
}

.StatsCasualtiesSideways .Divider {
    align-self: stretch;
    width: 1px;
    /* height: calc(100% - 5px); */
    /* height: 100%; */
    background-color: #BDE5ED;
    /* transform: translateX(-25px); */
}

.StatsCasualtiesSideways .DividerWithText {
    align-self: stretch;
    display: flex;
    justify-content: flex-end;
    color: #24AAC5;
}

.StatsCasualtiesSideways .DividerWithText-text {
    align-self: flex-end;
    margin-bottom: 0;
    visibility: hidden;
}

.StatsCasualtiesSideways .DividerWithText-text.show {
    visibility: visible;
}

.StatsCasualtiesSideways .DividerWithText-text.no-float {
    visibility: visible;
}

.BlobGroup {
    flex: 1 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.BlobGroup-wrapper {
    /* flex: 1 1 auto; */
    flex: 1 1 80%;
    align-self: stretch;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.BlobGroup .BlobWithInfo {
    flex: 1 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    justify-content: flex-end;
    align-items: center;
    margin-left: 25px;
    margin-right: 25px;
    /* padding: 50px 0; */
    padding: 30px 0 0 0;
    width: 25%;
}

.BlobGroup .BlobWithInfo:first-child {
    margin-left: 0;
}

.BlobGroup .BlobWithInfo:last-child {
    margin-right: 0;
}

.BlobGroup .PaddingTop {
    flex: 0 0 50px;
}

.BlobGroup .PaddingBottom {
    flex: 0 0 50px;
}

.BlobWithInfo {
    font-size: 2rem;
    line-height: 1.3;
}

.BlobWithInfo-info {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.BlobWithInfo-info.show {
    /* visibility: hidden!important; */
    visibility: hidden;
}

.BlobWithInfo-info.show.float {
    /* visibility: visible!important; */
    visibility: visible;
    z-index: 10;
}

.BlobWithInfo-info.show.no-float {
    /* visibility: visible!important; */
    visibility: visible;
    z-index: 10;
}

.BlobWithInfo-casualties {
    display: none;
    margin-bottom: 0;
}

.BlobWithInfo-casualties.show {
    display: block;
}

.BlobWithInfo-seriousCasualties {
    display: none;
    margin-bottom: 0;
}

.BlobWithInfo-seriousCasualties.show {
    display: block;
}

.BlobWithInfo-label {
    margin-right: 5px;
}

.BlobWithInfo-val {
    color: #EB0457;
}

.Blob {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 15px;
    width: 100%;
    /* max-width: 250px;
    max-height: 375px; */
    max-width: 400px;
    max-height: 600px;
}

.Blob > .ImgContainer {
    position: relative;
    width: 100%;
    height: auto;
}

.Tooltip {
    font-size: 1.4rem;
    line-height: 1.571;
}

.Tooltip .tooltip-inner {
    padding: 14px 20px;
    background-color: #EB0457!important;
    white-space: nowrap;
    max-width: none;
}

.Tooltip .arrow {
    display: initial;
}

.Tooltip .arrow:before {
    border-right-color: #EB0457!important;
    border-right-width: 10px;
}

.CustomSwitchContainer {
    display: flex;
    align-items: center;
    visibility: hidden;
}

.CustomSwitchContainer.show {
    visibility: visible;
    z-index: 1;
}

.CustomSwitchContainer.no-float {
    visibility: visible;
    z-index: 1;
}

.CustomSwitchContainer > * {
    margin-right: 20px;
}

.CustomSwitchContainer > *:last-child {
    margin-right: 0;
}

.CustomSwitchContainer-text {
    margin-bottom: 0;
    color: #EB0457;
    opacity: 0.3;
}

.CustomSwitchContainer-textContainer .Tooltip-content a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.CustomSwitchContainer-text.active {
    opacity: 1;
}

.CustomSwitchContainer .custom-switch {
    padding: 0;
    width: 104px;
    height: 49px;
} 

.CustomSwitchContainer .custom-control-label {
    position: static;
}

.CustomSwitchContainer .custom-switch .custom-control-label::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 24.5px;
    background-color: #EB0457!important; 
}

.CustomSwitchContainer .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow:none !important;
}

.CustomSwitchContainer .custom-control-input:active ~ .custom-control-label::before {
    background-color: #EB0457;
}

.CustomSwitchContainer .custom-switch .custom-control-label::after {
    border-radius: 50%;
    top: 50%!important;
    left: 6px;
    transform: translateY(-50%);
    width: 38px!important;
    height: 38px!important;
    background-color: white;
}

.CustomSwitchContainer .custom-switch .custom-control-input:checked~.custom-control-label::after {
    transform: translate(54px, -50%);
}

.SpeechBubble {
    /* display: none; */
    position: absolute;
    top: -17px;
    left: calc(50% + 5px);
    transform: translateY(-100%);
    border-radius: 10px;
    padding: 20px 35px;
    background-color: #24AAC5;
    z-index: 10;

    visibility: hidden;
    opacity: 0;
}

.SpeechBubble.show {
    /* display: block; */
}

.SpeechBubble::before {
    content: "";
    position: absolute;
    left: -11px;
    bottom: -3px;
    transform: rotate(159deg);
    width: 0px;
    height: 0px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #24AAC5;
}

.SpeechBubble-text {
    margin-bottom: 0; 
    color: white;
    font-size: 3.6rem;
    line-height: 1.278;
    text-align: center;
    white-space: nowrap;
}

.SpeechBubble-totalNumber {
    font-size: 1.6rem;
    line-height: 1.375;
}

.SpeechBubble-label {
    margin-right: 3px;
}

.SpeechBubble-location {
    font-size: 1.6rem;
    line-height: 1.375;
}

.StatsResultSpeechBubble .SpeechBubble-totalNumber {
    font-size: 3.6rem;
    line-height: 1.278;
}

#AllRoadCasualties .ScreenContainerHorizontal .ScreenContainer-wrapper {
    /* width: 400%; */
    height: 100%;
}

/* #AllRoadCasualties .ScreenContainerHorizontal .ScreenContainer .Screen {
    flex: 0 0 25%;
    height: 100%;
} */

#AllRoadCasualties .ScreenContainerHorizontal .Screen-content .PaddingTop {
    flex-basis: 38px;
}

#AllRoadCasualties .ScreenContainerHorizontal .Screen-content .PaddingBottom {
    flex-basis: 30px;
}

/* #ExploreStatsInDepth .ScreenContainerHorizontal .ScreenContainer-wrapper {
    width: 600%;
}

#ExploreStatsInDepth .ScreenContainerHorizontal .ScreenContainer .Screen {
    flex: 0 0 16.65%;
} */

/* #PassengerStats .ScreenContainerHorizontal .ScreenContainer-wrapper {
    width: 400%;
}

#PassengerStats .ScreenContainerHorizontal .ScreenContainer .Screen {
    flex: 0 0 25%;
} */

/* #PedestrianStats .ScreenContainerHorizontal .ScreenContainer-wrapper {
    width: 400%;
}

#PedestrianStats .ScreenContainerHorizontal .ScreenContainer .Screen {
    flex: 0 0 25%;
} */

/* #PedalCyclistsStats .ScreenContainerHorizontal .ScreenContainer-wrapper {
    width: 400%;
}

#PedalCyclistsStats .ScreenContainerHorizontal .ScreenContainer .Screen {
    flex: 0 0 25%;
} */

/* #DriversStats .ScreenContainerHorizontal .ScreenContainer-wrapper {
    width: 400%;
}

#DriversStats .ScreenContainerHorizontal .ScreenContainer .Screen {
    flex: 0 0 25%;
} */

#IntroAnimation {
    width: 100%;
    height: 100%;
    position: relative;
}

#IntroAnimation > svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)!important;
    min-width: 100%;
    min-height: 100%;
    width: auto!important;
    height: auto!important;
}

.Button.disabled {
    pointer-events: none;
}

.Button.btn-primary {
    background-color: #009FDF;
}

.Button.btn-primary:hover {
    background-color: #4F758B;
}

.Button.btn-primary:active {
    border: 0!important;
    /* background-color: #4F758B!important; */
    /* box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.3)!important; */
}

.Button.btn-primary:active:focus {
    box-shadow: none!important;
    /* box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.3)!important; */
}

.Button.btn-primary:focus {
    box-shadow: none;
}

.Button.btn-primary.disabled {
    background-color: rgba(110,110,110,0.3);
}

.FilterContainer {
    background-color: #210343;
}

/* .FilterContainer.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    height: calc(100% - 65px)!important;
    background: rgba(64, 64, 64,0.7);
    z-index: 11;
    overflow-y: auto;
} */

.FilterContainer-header {
    flex: 0 0 auto;
    display: flex;
    background-color: white;
}

.FilterContainer-close {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    width: 55px;
    height: 45px;
    background-color: #C5DAE1;
}

.FilterContainer-clearall {
    align-self: center;
    margin-right: 30px;
    color: #009FDF;
    font-weight: 600;
}

.FilterContainer-clearall:hover {
    color: #009FDF;
}

.FilterContainer-heading {
    align-self: center;
    flex-grow: 1;
    margin-bottom: 0;
}

.FilterContainer-body {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.FilterContainer-list {
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

.FilterContainer-item {
    margin-bottom: 35px;
}

.FilterContainer-item:last-child {
    margin-bottom: 0;
}

.Filter .nav-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* font-weight: 600; */
}

.Filter .nav-item .nav-link.dropdown-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 0;
    width: 30px;
    height: 30px;
    z-index: -1;
}

.Filter .nav-item .nav-link.dropdown-toggle.show {
    z-index: 1;
}

.Filter .nav-item .nav-link:focus {
    outline: 0;
}

.Filter .dropdown > .nav-link:not(.dropdown-toggle) {
    flex-grow: 1;
}

.Filter .dropdown-toggle {
    background: url(../images/arrow-down-red.svg) no-repeat right 0 top 50%;
}

/* to hide scrollbar */
.Filter .dropdown-menu {
    overflow-x: hidden;
    overflow-y: auto;
    /*-ms-overflow-style: none;*/  /* Internet Explorer 10+ */
    /*scrollbar-width: none;*/  /* Firefox */
}

.Filter .dropdown-menu::-webkit-scrollbar {
    /*display: none;*/  /* Safari and Chrome */
}

.Filter .dropdown-menu.show {
    flex-basis: 100%;
    position: relative!important;
    top: 0!important;
    float: none;
    border: 0;
    border-radius: 5px;
    padding: 0;
    transform: none!important;
    width: 100%;
    /* max-height: 252px; */
    /* max-height: 347px; */
    max-height: 223px;
    background-color: #210343;
}

.Filter .dropdown.show > .dropdown-toggle {
    background-image: url(../images/arrow-up-red.svg);
}

.Filter .custom-checkbox {
    padding: 20px 20px 20px 66px;
}

.Filter .custom-control-label {
    display: flex;
    justify-content: space-between;
    padding-top: 1px;
    width: 100%;
    white-space: normal;
}

.Filter .custom-checkbox .custom-control-label::before {
    top: -3px;
    left: -47px;
    border: 2px solid rgba(235,4,87,0.99);
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 29px;
}

.Filter .custom-control-label::after {
    top: -1px;
    left: -47px;
    width: 26px;
    height: 26px;
}

.Filter .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url(../images/tick-white.svg);
    background-size: 16px 16px;
    background-position: center;
}

.Filter .dropdown-item:hover .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url(../images/tick-purple.svg);
}

.Filter .dropdown-item {
    padding: 0;
    /* background: rgba(255, 255, 255, 0.1); */
    background-color: #42285F;
}

/* .Filter.dropdown-item.active, 
.Filter .dropdown-item:active {
    color: #4F758B;
    background-color: white;
} */

/* .Filter .dropdown-item:focus,  */
.Filter .dropdown-item:hover {
    background-color: white;
}

/* .Filter .dropdown-item:focus,  */
.Filter .dropdown-item:hover .Filter-label {
    color: #210343;;
}

.Filter .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
    /* outline: 0; */
    border: 2px solid rgba(235,4,87,0.99);
}

.Filter-input {
    flex-grow: 1;
    border-radius: 5px;
    border-style: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    color: white;
    pointer-events: none;
}

.Filter-input:focus {
    /* outline: 0; */
}

.Filter-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    font-family: "Circular Std";
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.375;
}

.Filter-input::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
    font-family: "Circular Std";
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.375;
}

.Filter .field-validation-error {
    position: absolute;
    left: 0;
    bottom: -80px;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    color: white;
    background-color: #EB0457;
    z-index: 1;
}

.Filter .field-validation-error:before {
    content: "";
    position: absolute;
    top: -14px;
    left: 30px;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #EB0457;
}

.Filter-heading {
    margin-bottom: 14px;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    color: white;
}

.Filter .Filter-dropdown-menu-wrapper {
    position: absolute;
    top: 120px;
    width: 100%;
}

.Filter .Filter-dropdown-menu-wrapper.up {
    top: unset;
    bottom: 79px;
}

.Filter .Filter-dropdown-menu-wrapper:before {
    display: none;
}

.Filter .Filter-dropdown-menu-wrapper.show:before {
    display: inherit;
    content: "";
    position: absolute;
    top: -14px;
    left: 30px;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid rgba(255, 255, 255, 0.1);
}

.Filter .Filter-dropdown-menu-wrapper.show.up:before {
    top: unset;
    bottom: -16px;
    border-top: 16px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
}

.Filter-label {
    color: white;
    font-family: "Circular Std";
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.375;
}

.Filter-text-clear {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    background: url(../images/close-red-small.svg) no-repeat right 0 top 50% / 20px 20px;
    z-index: -1;
}

.Filter-text-clear.show {
    z-index: 10;
}

.Filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.Filter-clear-all {
    position: relative;
    padding-left: 15px;
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.571;
}

.Filter-clear-all:hover {
    color: white;
}

.Filter-clear-all:before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(../images/cross-red-tiny.svg);
    background-repeat: no-repeat;

}

/* for firefox */
.Filter .dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #EB0457 #FBCDDD;
}
  
/* for Chrome/Edge/Safari */
.Filter .dropdown-menu::-webkit-scrollbar {
    width: 12px;
}

.Filter .dropdown-menu::-webkit-scrollbar-track {
    border-radius: 0 5px 5px 0;
    background-color: #FBCDDD;
}

.Filter .dropdown-menu::-webkit-scrollbar-thumb {
    width: 10px;
    height: 20px;
    background-color: #EB0457;
}

.ViewNextChapterLink .Link-label {
    font-size: 2rem;
    line-height: 1.3;
}

.AgeGroupFilter .Filter-dropdown-menu-wrapper {
    /* position: absolute;
    top: calc(-100% - 127px);
    height: 252px; */
}

.AgeGroupFilter .Filter-dropdown-menu-wrapper.show:before {
    top: unset;
    bottom: -16px;
    border-top: 16px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
}

.LocationFilterScreen {
    background-color: #210343;
}

.LocationKeyStats .StatsFilter {
    flex: 1 1 auto;
    width: 100%;
    max-width: 452px;
}

.LocationKeyStats .StatsResult {
    align-self: stretch;
    flex: 1 1 auto;
    /* background-color: white; */
    width: 100%;
    max-width: 586px;
    /* max-height: 586px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.LocationKeyStats .StatsResult-no-result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #210343;
}

.LocationKeyStats .StatsResult-no-result.show {
    display: flex;
}

.LocationKeyStats .StatsResult-no-result-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    color: white;
}

.LocationKeyStats .StatsResult-caption {
    color: white;
}

.LocationKeyStats .StatsResult-text {
    font-size: 1.4rem;
    line-height: 1.071;
    text-align: center;
}

.LocationKeyStats .StatsResult-link {
    color: #EB0457;
}

.LocationKeyStats .StatsResult-link:hover {
    opacity: 0.7;
}

.AllRoadPedalCyclingKeyStats .KeyStatsHeading-value {
    margin-bottom: 20px;
}

.AllRoadPedestriansKeyStats .KeyStatsHeading-value {
    margin-bottom: 20px;
}

.AllRoadPassengersAndDriversKeyStats .KeyStatsHeading-value {
    margin-bottom: 15px;
}

.AllRoadMotorcyclistsKeyStats .KeyStatsHeading-value {
    margin-top: -10px;
    margin-bottom: 20px;
}

.PassengerMaleFemaleKeyStats .KeyStatsHeading-value {
    margin-top: 10px;
    margin-bottom: 10px;
}

.PassengerMetroRegionalKeyStats .KeyStatsHeading-value {
    margin-top: 10px;
    margin-bottom: 10px;
}

.PedestrianAgeKeyStats .KeyStatsHeading-value {
    margin-bottom: 20px;
}

.PedestrianAreaKeyStats .KeyStatsHeading-value {
    margin-bottom: 20px;
}

.PedalCyclistsAgeCasualtiesKeyStats .KeyStatsHeading-value {
    margin-bottom: 20px;
}

.PedalCyclistsHelmetKeyStats .KeyStatsHeading-value {
    margin-bottom: 10px;

    width: 100%;
}

.DriversMetroRegionalKeyStats .KeyStatsHeading-value {
    margin-bottom: 10px;
}

.DriversAgeKeyStats .KeyStatsHeading-value {
    margin-top: -5px;
    margin-bottom: 15px;
}

.DriversStatsCasualtiesSideways0511YesrOld .KeyStatsHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
}

.PreLoader {
    position: absolute;
    /* position: fixed; */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.PreLoader-text {
    visibility: hidden;
    color: #EB0457;
    font-size: 1.2rem;
    letter-spacing: 2.57px;
    line-height: 1.833;
    text-transform: uppercase;
}

.PreLoader-text.show {
    visibility: visible;
}

@keyframes scroll-icon-scroller-up-down {
	0% {
		top: 7px;
	}

	50% {
		top: 27px;
	}

	100% {
		top: 7px;
	}
}

@keyframes pagination-indicator {
	0% {
		transform:translateX(-20%);
	}

	25% {
		transform:translateX(-80%);
    }

    50% {
		transform:translateX(-40%);
    }
    
    75% {
		transform:translateX(-60%);
	}

	100% {
		transform:translateX(-50%);
	}
}

#AllRoadCasualties .ScreenContainer {
    height: auto;
}

#AllRoadCasualties .ScreenContainer-wrapper {
    height: auto;
}

#AllRoadCasualties .Screen {
    /* position: static; */
    height: 100vh;
}

/* #PassengerStatsContainer {
    height: auto;
} */

#PassengerStats .ScreenContainer {
    height: auto;
}

#PassengerStats .ScreenContainer-wrapper {
    height: auto;
}

#PassengerStats .Screen {
    /* position: static; */
    height: 100vh;
}

#Counter7 {
    height: 104px;
}

#Counter220 {
    height: 104px;
}

/* #spinnerContainer {
    position: absolute;
} */

#preLoaderContainer {
    height: 200px;
}

#preLoaderContainer > svg {
    transform: none!important;
}

#CircleContainer {
    position: relative;
    margin-bottom: 25px;
    border-radius: 50%;
    width: 100%;
    /* height: 100%; */
    height: calc(100% - 50px); /* height of StatsResult-caption */
    max-width: 586px;
    max-height: 586px;
    /* background: rgba(255, 255, 255, 0.1); */
}

#CircleContainer > svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* #CircleContainer circle:first-child { */
#CircleContainer g:first-child circle {
    /* fill: #333; */
    opacity: 0;
    /* stroke: white; */
}

.SwipeIndicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #EB0457;
}

.IntroButtonContainer {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
}

#Intro .SkipIntroButton {
    position: static;
    right: inherit;
    bottom: inherit;
}

.MuteButtonContainer {
    display: flex;
    margin-left: 10px;
}

.MuteButton {
    border: 0;
    padding: 0;
    background-color: transparent
}

.MuteButton:hover {
    opacity: 0.5;
    background-color: transparent;
}

.MuteButton img {
    width: 60px;
    height: 50px;
}

.CustomSwitchContainer.show {
    z-index: 11;
}

.CustomSwitchContainer-textContainer {
    position: relative;
    display: flex;
}

.CustomSwitchContainer-textContainer .Tooltip {
    margin-left: 3px;
    z-index: 10;
}

.CustomSwitchContainer-textContainer .Tooltip .Tooltip-content {
    top: unset;
    bottom: 0;
    left: 22px;
    margin-bottom: 30px;
    width: 180px;
    white-space: normal;
}

.CustomSwitchContainer-textContainer .Tooltip .Tooltip-content:before {    
    top: unset;
    left: -11px;
    bottom: -3px;
    transform: rotate(159deg);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #EB0457;
    border-bottom: unset;
}