.shadow-text {
  font-size: 10rem;
  position: relative;
  display: inline; }
  .shadow-text .foreground {
    z-index: 10;
    position: relative;
    font-weight: 700; }
  .shadow-text .shadow {
    background-image: url("/assets/img/3x3-dot.svg");
    background-repeat: repeat;
    background-position: 0 0;
    background-size: 32px;
    text-align: center;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    z-index: 9;
    position: absolute;
    left: 0.7rem;
    top: 0.7rem;
    text-shadow: none;
    font-weight: 700;
    white-space: nowrap; }
  .shadow-text.text-small .shadow,
  .shadow-text .text-normal .shadow {
    background-size: 14px;
    left: 0.5rem;
    top: 0.5rem; }
  .shadow-text.text-medium .shadow {
    background-size: 14px;
    left: 0.7rem;
    top: 0.5rem; }
  .shadow-text.text-large .shadow {
    background-size: 27px;
    left: 0.5rem;
    top: 0.4rem; }

p, span {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8); }

.text-ultra-large {
  font-size: 7.5rem; }

.text-large {
  font-size: 5rem;
  line-height: 5.1rem; }

.text-medium {
  font-size: 2.4rem;
  line-height: 2.5rem; }

.text-normal {
  font-size: 1.6rem;
  line-height: 1.8rem; }

.text-small {
  font-size: 1.2rem;
  line-height: 1.3rem; }

.text-light {
  font-weight: 300; }

.text-bold {
  font-weight: 700; }

.text-green {
  color: #d5e830; }

.text-white {
  color: #fff; }

.text-red {
  color: #d30f32; }

.text-yellow {
  color: #ffed00; }

.text-caps {
  text-transform: uppercase; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.section-title {
  margin-bottom: 20px; }

.header-image {
  height: 95px;
  background-image: url("/assets/img/city-scape-scroll.svg");
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  margin-bottom: 40px;
  margin-top: 10px; }

.square-box,
.pitch-box {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  z-index: -5;
  padding: 20px;
  margin: 20px; }

.square-box {
  height: 270px;
  background-image: url("/assets/img/square-box.png");
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.footer-image {
  height: 95px;
  background-image: url("/assets/img/goal-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 0; }

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

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

.no-margin {
  margin: 0; }

.select-dropdown {
  position: relative;
  background-color: #191b03;
  width: auto;
  float: left;
  max-width: 100%;
  border-radius: 2px; }
  .select-dropdown select {
    font-size: 1rem;
    font-weight: 200;
    max-width: 100%;
    padding: 8px 24px 8px 10px;
    border: none;
    background-color: #191b03;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: white; }
    .select-dropdown select:active, .select-dropdown select:focus {
      outline: none;
      box-shadow: none; }
  .select-dropdown:after {
    content: " ";
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #d5e830; }

.options-group {
  position: absolute;
  right: 2px;
  top: 2px; }
  .options-group .select-dropdown {
    position: relative;
    right: 0;
    top: 0; }
  .options-group .metric-links {
    text-align: center; }
    .options-group .metric-links a {
      background: #000;
      padding: 0 5px; }
    .options-group .metric-links a.selected {
      color: #d5e830;
      text-decoration: underline; }
    .options-group .metric-links a:hover {
      cursor: pointer; }

.error .options-group, .error .loading-screen, .error header {
  display: none; }

.share-buttons {
  margin-top: 25px; }

.twitter-share-button,
.fb-share-button {
  display: block;
  width: 50px;
  height: 50px; }

.fade-background-image {
  position: relative; }
  .fade-background-image::after {
    content: '';
    position: absolute;
    height: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0), black); }
  .fade-background-image::before {
    content: '';
    position: absolute;
    height: 20px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: linear-gradient(black, rgba(0, 0, 0, 0)); }

.margin-top {
  margin-top: 50px; }

.margin-top-bottom {
  margin-bottom: 50px;
  margin-top: 20px; }

.loading-screen {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #000; }
  .loading-screen .loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; }
    .loading-screen .loading-content .image-wrapper {
      width: 500px;
      height: 100%;
      overflow: hidden; }
      .loading-screen .loading-content .image-wrapper .image-animation {
        background-image: url("/assets/img/city-scape-scroll.svg");
        background-repeat: repeat-x;
        background-size: 50%;
        height: 200px;
        width: 4000px;
        animation: slide 2.5s linear forwards; }

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0); }
  100% {
    transform: translate3d(-750px, 0, 0); } }

section.download {
  margin-bottom: 0px;
  padding: 0; }

.download-buttons {
  display: flex;
  justify-content: center;
  align-items: center; }
  .download-buttons .apple-badge {
    padding: 0 11px; }

.ie .shadow-text .shadow {
  display: none; }

/* Vue.js hide unstyled content */
[v-cloak] {
  display: none; }

section.error-section {
  display: none; }

body.error section,
body.error .footer-image,
body.error .language-select {
  display: none; }

body.error section.error-section {
  display: block;
  margin-top: 40px; }

body.error [v-cloak] {
  display: block; }

html {
  font-size: 16px; }

body {
  background-color: #000;
  color: #fff;
  font-family: futura-pt, sans-serif;
  margin: 0; }

#app {
  max-width: 1024px;
  margin: 0 auto;
  overflow: visible; }

section {
  padding: 20px;
  overflow: hidden; }

section.initial-page {
  padding: 0; }

p {
  margin: 0 0 10px; }

.select-dropdown {
  position: absolute;
  right: 2px;
  top: 2px; }
  .select-dropdown select {
    font-size: 0.8rem; }

.share-section img {
  width: 100%; }

.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center; }
  .share-buttons > * {
    margin: 0 20px; }

.profile-container .top {
  border: 5px dashed #d5e830;
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
  padding: 40px 20px; }
  .profile-container .top p {
    margin-bottom: 5%; }

.profile-container img {
  width: 100%;
  margin-top: -5px; }

@media screen and (min-width: 768px) {
  .select-dropdown {
    right: 20px;
    top: 20px; }
    .select-dropdown select {
      font-size: 1rem; }
  .options-group {
    right: 20px;
    top: 20px; } }

section {
  margin-bottom: 10vh; }

header {
  text-align: center; }
  header h1 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    display: inline-block; }
  header .refsix-logo {
    display: inline-block;
    height: 1.05rem;
    margin: 0 auto; }

.initial-page {
  text-align: center;
  position: relative; }

.header-image {
  margin-bottom: 10px; }

.big-image {
  position: relative; }
  .big-image img {
    width: 100%;
    padding-left: 5%; }
  .big-image.big-image-calendar img {
    padding-left: 1%; }
  .big-image.big-image-shirt img {
    padding-left: 0%; }
  .big-image.big-image-heart-rate img {
    padding-left: 0%; }
  .big-image.big-image-card img {
    width: 275px;
    margin: 0 auto;
    display: block; }
  .big-image .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    .big-image .overlay-text .shadow-text {
      line-height: 8rem; }

.preview-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px; }

.title {
  margin-bottom: 0;
  font-size: 2.25rem;
  letter-spacing: 0.5px; }

.title-sub {
  font-size: 1.4rem;
  letter-spacing: 0.25px;
  margin-bottom: 40px; }

.mb-4 {
  margin-bottom: 40px; }

.storyline {
  position: relative;
  width: 100%;
  max-width: 310px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  letter-spacing: 2.8px; }
  .storyline-header, .storyline-footer {
    position: absolute;
    left: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    z-index: 100; }
  .storyline-header {
    top: 0;
    padding: 0; }
  .storyline-footer {
    bottom: 0;
    display: flex;
    justify-content: center; }
  .storyline-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #ffffff; }
  .storyline-btn {
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 25px;
    color: #ffffff;
    z-index: 1;
    padding: 6px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0; }
    .storyline-btn:disabled {
      pointer-events: none; }
  .storyline-image {
    width: 100%;
    height: 430px; }
    .storyline-image, .storyline-image-author {
      object-fit: cover; }
    .storyline-image-author {
      flex: 0 0 auto;
      height: 26px;
      margin-right: 10px;
      text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.96); }
  .storyline-author {
    width: 100%;
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .storyline-indicator {
    list-style: none;
    margin-top: -1px;
    margin-bottom: 0;
    padding-left: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%; }
    .storyline-indicator .indicator-item {
      position: relative;
      flex: 1 0 auto;
      height: 2px;
      margin-left: 2px;
      margin-right: 2px;
      background-color: rgba(255, 255, 255, 0.3);
      overflow: hidden; }
      .storyline-indicator .indicator-item .indicator-bar {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        will-change: transform;
        transform: scaleX(0);
        transform-origin: left center; }
      .storyline-indicator .indicator-item.item-loading .indicator-bar {
        animation: loading 3s linear forwards; }
      .storyline-indicator .indicator-item.item-loaded .indicator-bar {
        transform: scaleX(1); }
  .storyline-control {
    position: absolute;
    height: 100vh;
    width: 50%;
    top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    touch-action: manipulation;
    padding: 0; }
    .storyline-control-prev {
      left: 0; }
    .storyline-control-next {
      right: 0; }
  .storyline-slider {
    position: relative;
    height: 100%;
    overflow: hidden; }
  .storyline-slide {
    display: none; }
    .storyline-slide:before {
      content: '';
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.2); }
    .storyline-slide.slide-active {
      display: block; }
  .storyline-text {
    position: absolute;
    width: 100%;
    padding: 15px 30px;
    font-weight: 600;
    line-height: 1.75;
    font-size: 1.6rem;
    letter-spacing: 0;
    color: #ffffff; }
    .storyline-text.text-x-left {
      left: 0;
      text-align: left; }
    .storyline-text.text-x-right {
      right: 0;
      text-align: right; }
    .storyline-text.text-x-center {
      text-align: center; }
    .storyline-text.text-y-top {
      top: 30px; }
    .storyline-text.text-y-center {
      top: 50%;
      transform: translateY(-50%); }
    .storyline-text.text-y-bottom {
      bottom: 50px; }

@keyframes loading {
  0% {
    transform: scaleX(0); }
  100% {
    transform: scaleX(1); } }

.pitch-box {
  height: 270px;
  background-image: url("/assets/img/pitch.svg");
  text-align: center; }

.time-pitch {
  display: flex;
  flex-direction: column; }
  .time-pitch .roles-group {
    display: flex;
    flex-direction: row;
    flex: 1; }
    .time-pitch .roles-group .role {
      display: flex;
      flex-direction: column;
      flex: 1;
      align-items: center;
      justify-content: center; }
      .time-pitch .roles-group .role img {
        flex: 1;
        margin: 10px;
        width: 50%; }

.match-locations img {
  width: calc(100% + 40px);
  margin-left: -20px; }

.mins-seconds-block {
  display: flex;
  justify-content: space-between; }

.cards-group {
  display: flex;
  flex-direction: row; }
  .cards-group .card {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center; }
    .cards-group .card img {
      width: 50%;
      margin-left: 15px; }

.injury-time-container .top {
  border: 4px solid #d5e830;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  margin: 0 10% 0 12%; }
  .injury-time-container .top .content {
    flex: 1; }
  .injury-time-container .top .content:first-child {
    border-right: 4px dashed #d5e830; }

.injury-time-container img {
  width: 100%;
  margin-top: -22px; }

.marathons-section .big-image img {
  padding-left: 10%;
  padding-right: 10%;
  width: 80%; }

.marathons-section .big-image .overlay-text {
  margin-top: 45px; }

.most-cards-section .big-image .overlay-text {
  margin-right: 35px; }

.average-goals {
  display: flex;
  justify-content: center;
  align-items: center; }
  .average-goals .image {
    flex: 1;
    display: flex;
    justify-content: center; }
    .average-goals .image img {
      width: 54%; }
  .average-goals .content {
    flex: 1; }

.center-shadow-text {
  display: flex;
  flex-direction: column;
  align-items: center; }

.vimeo-player {
  width: 90vw;
  height: 90vw; }

.profile-container .top {
  position: relative; }

.profile-container.share-container .top {
  position: relative;
  padding: 20px; }
  .profile-container.share-container .top img {
    width: auto; }

a.pro-badge {
  text-decoration: none;
  position: absolute;
  top: 10px;
  right: 10px; }
  a.pro-badge img {
    width: 30px; }

.match-info .display-row p {
  flex: 1;
  padding-left: 2%;
  padding-right: 2%; }

.match-info .display-row p:first-child, .match-info .display-row p:last-child {
  flex: 2;
  padding: 0;
  justify-content: flex-end; }

.match-info.most-goals .display-row {
  align-items: unset; }
  .match-info.most-goals .display-row p {
    display: flex;
    justify-content: center;
    align-items: center; }
  .match-info.most-goals .display-row p:first-child, .match-info.most-goals .display-row p:last-child {
    justify-content: flex-end; }

.card-content {
  margin-top: 10px; }

.pages {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  position: relative; }

.storyline-footer {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 0; }

.storyline-btn {
  background-color: black;
  border-color: #d5e830;
  border-width: 2px;
  animation-name: blinking;
  animation-duration: 2s;
  animation-iteration-count: infinite; }

@keyframes blinking {
  50% {
    border-color: #6d731b; } }

.last-share-btn {
  z-index: 1000;
  font-size: 30px;
  margin-top: 20px; }

.story-clickable {
  position: relative;
  z-index: 1000; }

.share-buttons .share-stat {
  margin: 0 5px; }

.fb-share-button,
.twitter-share-button {
  z-index: 1000; }

.download-refsix {
  margin: 20px 0 30px 0  !important;
  font-size: 19px;
  line-height: 28px; }

.settings-button {
  background: transparent;
  border: 2px solid #bbbbbb;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  padding: 2px 0 0 0;
  position: fixed;
  left: 10px;
  bottom: 10px; }
  .settings-button img {
    width: 20px;
    height: 20px; }

.options-group {
  position: fixed;
  bottom: 57px;
  left: 0;
  right: 0;
  top: unset;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
