body {
  background-color: #333;
  /*background-image: url(../img/F1_back2.jpg);*/
  background-position: 0 5vw;
  background-size: 100% auto;
  font-family: 'Roboto Condensed', sans-serif; }
  body * {
    box-sizing: border-box; }
  body .header {
    position: absolute;
    top: 0px;
    left: 10%;
    display: none; }
    body .header img {
      margin-top: 32px;
      width: 150px; }
  body .circular-chart {
    width: 60vw;
    height: 60vw;
    margin: 5vw auto; }
  body .separator {
    position: relative;
    width: 100%;
    height: 32px;
    margin: 10px 0; }
    body .separator:after, body .separator:before {
      content: "";
      width: 30%;
      position: absolute;
      top: 50%;
      border: 1px solid #CCC; }
    body .separator:after {
      left: 60%; }
    body .separator:before {
      right: 60%; }
    body .separator.helmet, body .separator.race-car {
      background-position: 50% 50%;
      background-repeat: no-repeat; }
    body .separator.helmet {
      background-size: auto 30px;
      background-image: url(../img/helmet-white.png); }
    body .separator.race-car {
      background-size: auto 25px;
      background-image: url(../img/car-white.png); }
  body .radial-years {
    font-size: 16px;
    font-weight: 700;
    fill: #F1F1F2;
    pointer-events: none; }
    body .radial-years.active {
      font-size: 20px;
      fill: #333; }
  body .arc-segment {
    cursor: hand;
    cursor: pointer;
    fill: #333; }
    body .arc-segment.active {
      fill: #FFF; }
  body .info-container {
    position: absolute;
    left: 50%;
    margin-left: -20vw;
    top: 0%;
    margin-top: 15vw;
    height: 40vw;
    width: 40vw;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: start;
    /*flex-wrap: wrap;*/
    flex-flow: row wrap;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.9); }
    body .info-container h1,
    body .info-container .podium-item-container {
      width: 70%;
      margin: 0 auto;
      color: #B8B9BC; }
    body .info-container h1 {
      margin-top: 7vh;
      color: #F1F1F2;
      text-align: center;
      font-size: 52px; }
    body .info-container .podium-item-container .podium-item {
      font-size: 24px;
      font-weight: 300; }
      body .info-container .podium-item-container .podium-item strong {
        color: #F1F1F2;
        text-transform: uppercase; }
      body .info-container .podium-item-container .podium-item em {
        font-style: normal;
        font-size: 20px;
        font-weight: 700; }
      body .info-container .podium-item-container .podium-item span {
        color: #F1F1F2;
        font-weight: 700;
        font-size: 20px;
        float: right; }
        body .info-container .podium-item-container .podium-item span small {
          margin-left: 10px;
          font-size: 12px; }
    body .info-container .podium-item-container .podium-item-constructor {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      padding-left: 28px; }
  body .rounds-container {
    display: flex;
    flex-flow: row wrap;
    background-color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5vw; }
    body .rounds-container .round {
      /*border: 1px solid #0C0;*/
      min-width: 33.333%;
      max-width: 33.333%;
      padding: 2vw; }
      body .rounds-container .round p {
        margin: 0px; }
        body .rounds-container .round p.round-number {
          text-transform: uppercase;
          font-size: 16px;
          font-weight: 700; }
        body .rounds-container .round p.prix-name {
          font-size: 24px;
          font-weight: 700; }
      body .rounds-container .round .circuit-shape svg {
        width: 80%; }
      body .rounds-container .round .circuit-shape,
      body .rounds-container .round .circuit-name {
        width: 50%;
        float: left; }
      body .rounds-container .round .circuit-name {
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        padding-top: 16px;
        padding-left: 16px; }
      body .rounds-container .round .round-podium-container {
        clear: both; }
        body .rounds-container .round .round-podium-container .round-positions,
        body .rounds-container .round .round-podium-container .round-positions-drivers,
        body .rounds-container .round .round-podium-container .round-positions-constructors {
          display: inline-block; }
        body .rounds-container .round .round-podium-container .round-positions {
          width: 10%; }
        body .rounds-container .round .round-podium-container .round-positions-drivers,
        body .rounds-container .round .round-podium-container .round-positions-constructors {
          padding-top: 30px;
          background-repeat: no-repeat;
          width: 40%; }
          body .rounds-container .round .round-podium-container .round-positions-drivers p,
          body .rounds-container .round .round-podium-container .round-positions-constructors p {
            font-weight: 300; }
          body .rounds-container .round .round-podium-container .round-positions-drivers strong,
          body .rounds-container .round .round-podium-container .round-positions-constructors strong {
            font-weight: 300;
            text-transform: uppercase; }
        body .rounds-container .round .round-podium-container .round-positions-drivers {
          background-size: auto 23px;
          background-image: url(../img/helmet-black.png); }
        body .rounds-container .round .round-podium-container .round-positions-constructors {
          background-position: 0 4px;
          background-size: auto 19px;
          background-image: url(../img/car-black.png);
          margin-left: 5%; }
      body .rounds-container .round:nth-child(odd) {
        background-color: #000;
        color: #FFF; }
        body .rounds-container .round:nth-child(odd) .circuit-shape g,
        body .rounds-container .round:nth-child(odd) .circuit-shape path {
          fill: #FFF !important; }
        body .rounds-container .round:nth-child(odd) .round-positions-drivers {
          background-image: url(../img/helmet-white.png); }
        body .rounds-container .round:nth-child(odd) .round-positions-constructors {
          background-image: url(../img/car-white.png); }
  body .scroll-to-rounds {
    position: absolute;
    left: 70%;
    right: 0%;
    bottom: 0px;
    color: #fff;
    display: none;
    text-align: center; }
  body #return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: black;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999; }
  body #return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  body #return-to-top:hover {
    background: rgba(0, 0, 0, 0.9); }
  body #return-to-top:hover i {
    color: #fff;
    top: 5px; }

@keyframes spin {
  0% {
    transform: translate(2px, 1px) rotate(0deg); }
  10% {
    transform: translate(2px, 1px) rotate(36deg); }
  20% {
    transform: translate(2px, 1px) rotate(72deg); }
  30% {
    transform: translate(2px, 1px) rotate(108deg); }
  40% {
    transform: translate(2px, 1px) rotate(144deg); }
  50% {
    transform: translate(2px, 1px) rotate(180deg); }
  60% {
    transform: translate(2px, 1px) rotate(216deg); }
  70% {
    transform: translate(2px, 1px) rotate(252deg); }
  80% {
    transform: translate(2px, 1px) rotate(288deg); }
  90% {
    transform: translate(2px, 1px) rotate(324deg); }
  100% {
    transform: translate(2px, 1px) rotate(360deg); } }
@keyframes speed {
  0% {
    transform: translate(2px, 1px) rotate(0deg); }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg); }
  20% {
    transform: translate(-2px, 0px) rotate(1deg); }
  30% {
    transform: translate(1px, 2px) rotate(0deg); }
  40% {
    transform: translate(1px, -1px) rotate(1deg); }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg); }
  60% {
    transform: translate(-1px, 1px) rotate(0deg); }
  70% {
    transform: translate(3px, 1px) rotate(-1deg); }
  80% {
    transform: translate(-2px, -1px) rotate(1deg); }
  90% {
    transform: translate(2px, 1px) rotate(0deg); }
  100% {
    transform: translate(1px, -2px) rotate(-1deg); } }
@keyframes strikes {
  from {
    left: 25px; }
  to {
    left: -80px;
    opacity: 0; } }
@keyframes dots {
  from {
    width: 0px; }
  to {
    width: 15px; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn, .loading-window {
  animation: fadeIn 0.4s both; }

.loading-window {
  background: #333;
  border-radius: 6px;
  border: 0px solid #ffffff;
  color: #ffffff;
  height: 200px;
  left: 50%;
  margin-left: -150px;
  margin-top: -100px;
  position: fixed;
  top: 50%;
  width: 300px;
  z-index: 99; }

.loading-window .text {
  font-size: 20px;
  position: absolute;
  width: auto;
  top: 75%;
  left: 38%;
  margin: 0 auto; }

.loading-window .dots {
  display: inline-block;
  width: 5px;
  overflow: hidden;
  vertical-align: bottom;
  animation: dots 1.5s linear infinite;
  transition: 1; }

.car {
  position: absolute;
  width: 117px;
  height: 42px;
  left: 92px;
  top: 70px; }

.car .strike {
  position: absolute;
  width: 11px;
  height: 1px;
  background: #ffffff;
  animation: strikes 0.2s linear infinite; }

.car .strike2 {
  top: 11px;
  animation-delay: 0.05s; }

.car .strike3 {
  top: 22px;
  animation-delay: 0.1s; }

.car .strike4 {
  top: 33px;
  animation-delay: 0.15s; }

.car .strike5 {
  top: 44px;
  animation-delay: 0.2s; }

.car-detail {
  position: absolute;
  display: block;
  background: #ffffff;
  animation: speed 0.5s linear infinite; }

.car-detail.spoiler {
  width: 0;
  height: 0;
  top: 7px;
  background: none;
  border: 20px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 20px solid #ffffff; }

.car-detail.back {
  height: 20px;
  width: 92px;
  top: 15px;
  left: 0px; }

.car-detail.center {
  height: 35px;
  width: 75px;
  left: 12px;
  border-top-left-radius: 30px;
  border-top-right-radius: 45px 40px;
  border: 4px solid #ffffff;
  background: none;
  box-sizing: border-box; }

.car-detail.center1 {
  height: 35px;
  width: 35px;
  left: 12px;
  border-top-left-radius: 30px; }

.car-detail.front {
  height: 20px;
  width: 50px;
  top: 15px;
  left: 67px;
  border-top-right-radius: 50px 40px;
  border-bottom-right-radius: 10px; }

.car-detail.wheel {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  top: 18px;
  left: 3px;
  border: 3px solid #333;
  background: linear-gradient(45deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), linear-gradient(90deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), linear-gradient(0deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), radial-gradient(#ffffff 29%, transparent 30%, transparent 50%, #ffffff 51%), #333;
  animation-name: spin; }

.car-detail.wheel2 {
  left: 84px; }

/*# sourceMappingURL=main.css.map */
