/* General */

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

main {
  flex: 10000 1 0%;
  display: flex;
  flex-wrap: wrap;
}

/* Palette */

.bg-primary {
  background: #B71C1C;
}

.bg-secondary {
  background: #424242;
}

.bg-accent {
  background: #258DD4;
}

.text-primary {
  color: #B71C1C;
}

.text-secondary {
  color: #424242;
}

.text-accent {
  color: #258DD4;
}

.text-white {
  color: #FFFFFF;
}

.text-black {
  color: #000000;
}

/* Text */

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

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

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

.text-caption {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.03333em;
}

/* Common classes */

.overflow {
  overflow: auto;
}

.overflow-x {
  overflow-x: auto;
}

.overflow-y {
  overflow-y: auto;
}

/* Grid */

.flex {
  display: flex;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.row.no-wrap,
.column.no-wrap {
  flex-wrap: nowrap;
}

.row > .col {
  flex: 10000 1 0%;
}

.row > .col-auto {
  flex: 0 0 auto;
}

.row > .col-1 {
  width: 8.333%;
}

.row > .col-2 {
  width: 16.667%;
}

.row > .col-3 {
  width: 25%;
}

.row > .col-4 {
  width: 33.333%;
}

.row > .col-5 {
  width: 41.667%;
}

.row > .col-6 {
  width: 50%;
}

.row > .col-7 {
  width: 58.333%;
}

.row > .col-8 {
  width: 66.667%;
}

.row > .col-9 {
  width: 75%;
}

.row > .col-10 {
  width: 83.333%;
}

.row > .col-11 {
  width: 91.667%;
}

.row > .col-12 {
  width: 100%;
}

.column > .col-auto,
.column > .col,
.column > .col-1,
.column > .col-2,
.column > .col-3,
.column > .col-4,
.column > .col-5,
.column > .col-6,
.column > .col-7,
.column > .col-8,
.column > .col-9,
.column > .col-10,
.column > .col-11,
.column > .col-12,
.column > .col-xs-1,
.column > .col-xs-2,
.column > .col-xs-3,
.column > .col-xs-4,
.column > .col-xs-5,
.column > .col-xs-6,
.column > .col-xs-7,
.column > .col-xs-8,
.column > .col-xs-9,
.column > .col-xs-10,
.column > .col-xs-11,
.column > .col-xs-12,
.column > .col-sm-1,
.column > .col-sm-2,
.column > .col-sm-3,
.column > .col-sm-4,
.column > .col-sm-5,
.column > .col-sm-6,
.column > .col-sm-7,
.column > .col-sm-8,
.column > .col-sm-9,
.column > .col-sm-10,
.column > .col-sm-11,
.column > .col-sm-12,
.column > .col-md-1,
.column > .col-md-2,
.column > .col-md-3,
.column > .col-md-4,
.column > .col-md-5,
.column > .col-md-6,
.column > .col-md-7,
.column > .col-md-8,
.column > .col-md-9,
.column > .col-md-10,
.column > .col-md-11,
.column > .col-md-12,
.column > .col-lg-1,
.column > .col-lg-2,
.column > .col-lg-3,
.column > .col-lg-4,
.column > .col-lg-5,
.column > .col-lg-6,
.column > .col-lg-7,
.column > .col-lg-8,
.column > .col-lg-9,
.column > .col-lg-10,
.column > .col-lg-11,
.column > .col-lg-12,
.column > .col-xl-1,
.column > .col-xl-2,
.column > .col-xl-3,
.column > .col-xl-4,
.column > .col-xl-5,
.column > .col-xl-6,
.column > .col-xl-7,
.column > .col-xl-8,
.column > .col-xl-9,
.column > .col-xl-10,
.column > .col-xl-11,
.column > .col-xl-12 {
  height: auto;
  min-height: 0;
  max-height: 100%;
}

.column > .col-auto {
  flex: 0 0 auto;
}

.column > .col-1 {
  height: 8.333%;
}

.column > .col-2 {
  height: 16.667%;
}

.column > .col-3 {
  height: 25%;
}

.column > .col-4 {
  height: 33.333%;
}

.column > .col-5 {
  height: 41.667%;
}

.column > .col-6 {
  height: 50%;
}

.column > .col-7 {
  height: 58.333%;
}

.column > .col-8 {
  height: 66.667%;
}

.column > .col-9 {
  height: 75%;
}

.column > .col-10 {
  height: 83.333%;
}

.column > .col-11 {
  height: 91.667%;
}

.column > .col-12 {
  height: 100%;
}

@media (min-width: 0) {
  .row > .col-xs-1 {
    width: 8.333%;
  }
  
  .row > .col-xs-2 {
    width: 16.667%;
  }
  
  .row > .col-xs-3 {
    width: 25%;
  }
  
  .row > .col-xs-4 {
    width: 33.333%;
  }
  
  .row > .col-xs-5 {
    width: 41.667%;
  }
  
  .row > .col-xs-6 {
    width: 50%;
  }
  
  .row > .col-xs-7 {
    width: 58.333%;
  }
  
  .row > .col-xs-8 {
    width: 66.667%;
  }
  
  .row > .col-xs-9 {
    width: 75%;
  }
  
  .row > .col-xs-10 {
    width: 83.333%;
  }
  
  .row > .col-xs-11 {
    width: 91.667%;
  }
  
  .row > .col-xs-12 {
    width: 100%;
  }

  .column > .col-xs-1 {
    height: 8.333%;
  }
  
  .column > .col-xs-2 {
    height: 16.667%;
  }
  
  .column > .col-xs-3 {
    height: 25%;
  }
  
  .column > .col-xs-4 {
    height: 33.333%;
  }
  
  .column > .col-xs-5 {
    height: 41.667%;
  }
  
  .column > .col-xs-6 {
    height: 50%;
  }
  
  .column > .col-xs-7 {
    height: 58.333%;
  }
  
  .column > .col-xs-8 {
    height: 66.667%;
  }
  
  .column > .col-xs-9 {
    height: 75%;
  }
  
  .column > .col-xs-10 {
    height: 83.333%;
  }
  
  .column > .col-xs-11 {
    height: 91.667%;
  }
  
  .column > .col-xs-12 {
    height: 100%;
  }
}

@media (min-width: 600px) {
  .row > .col-sm-1 {
    width: 8.333%;
  }
  
  .row > .col-sm-2 {
    width: 16.667%;
  }
  
  .row > .col-sm-3 {
    width: 25%;
  }
  
  .row > .col-sm-4 {
    width: 33.333%;
  }
  
  .row > .col-sm-5 {
    width: 41.667%;
  }
  
  .row > .col-sm-6 {
    width: 50%;
  }
  
  .row > .col-sm-7 {
    width: 58.333%;
  }
  
  .row > .col-sm-8 {
    width: 66.667%;
  }
  
  .row > .col-sm-9 {
    width: 75%;
  }
  
  .row > .col-sm-10 {
    width: 83.333%;
  }
  
  .row > .col-sm-11 {
    width: 91.667%;
  }
  
  .row > .col-sm-12 {
    width: 100%;
  }

  .column > .col-sm-1 {
    height: 8.333%;
  }
  
  .column > .col-sm-2 {
    height: 16.667%;
  }
  
  .column > .col-sm-3 {
    height: 25%;
  }
  
  .column > .col-sm-4 {
    height: 33.333%;
  }
  
  .column > .col-sm-5 {
    height: 41.667%;
  }
  
  .column > .col-sm-6 {
    height: 50%;
  }
  
  .column > .col-sm-7 {
    height: 58.333%;
  }
  
  .column > .col-sm-8 {
    height: 66.667%;
  }
  
  .column > .col-sm-9 {
    height: 75%;
  }
  
  .column > .col-sm-10 {
    height: 83.333%;
  }
  
  .column > .col-sm-11 {
    height: 91.667%;
  }
  
  .column > .col-sm-12 {
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .row > .col-md-1 {
    width: 8.333%;
  }
  
  .row > .col-md-2 {
    width: 16.667%;
  }
  
  .row > .col-md-3 {
    width: 25%;
  }
  
  .row > .col-md-4 {
    width: 33.333%;
  }
  
  .row > .col-md-5 {
    width: 41.667%;
  }
  
  .row > .col-md-6 {
    width: 50%;
  }
  
  .row > .col-md-7 {
    width: 58.333%;
  }
  
  .row > .col-md-8 {
    width: 66.667%;
  }
  
  .row > .col-md-9 {
    width: 75%;
  }
  
  .row > .col-md-10 {
    width: 83.333%;
  }
  
  .row > .col-md-11 {
    width: 91.667%;
  }
  
  .row > .col-md-12 {
    width: 100%;
  }

  .column > .col-md-1 {
    height: 8.333%;
  }
  
  .column > .col-md-2 {
    height: 16.667%;
  }
  
  .column > .col-md-3 {
    height: 25%;
  }
  
  .column > .col-md-4 {
    height: 33.333%;
  }
  
  .column > .col-md-5 {
    height: 41.667%;
  }
  
  .column > .col-md-6 {
    height: 50%;
  }
  
  .column > .col-md-7 {
    height: 58.333%;
  }
  
  .column > .col-md-8 {
    height: 66.667%;
  }
  
  .column > .col-md-9 {
    height: 75%;
  }
  
  .column > .col-md-10 {
    height: 83.333%;
  }
  
  .column > .col-md-11 {
    height: 91.667%;
  }
  
  .column > .col-md-12 {
    height: 100%;
  }
}

@media (min-width: 	1440px) {
  .row > .col-lg-1 {
    width: 8.333%;
  }
  
  .row > .col-lg-2 {
    width: 16.667%;
  }
  
  .row > .col-lg-3 {
    width: 25%;
  }
  
  .row > .col-lg-4 {
    width: 33.333%;
  }
  
  .row > .col-lg-5 {
    width: 41.667%;
  }
  
  .row > .col-lg-6 {
    width: 50%;
  }
  
  .row > .col-lg-7 {
    width: 58.333%;
  }
  
  .row > .col-lg-8 {
    width: 66.667%;
  }
  
  .row > .col-lg-9 {
    width: 75%;
  }
  
  .row > .col-lg-10 {
    width: 83.333%;
  }
  
  .row > .col-lg-11 {
    width: 91.667%;
  }
  
  .row > .col-lg-12 {
    width: 100%;
  }

  .column > .col-lg-1 {
    height: 8.333%;
  }
  
  .column > .col-lg-2 {
    height: 16.667%;
  }
  
  .column > .col-lg-3 {
    height: 25%;
  }
  
  .column > .col-lg-4 {
    height: 33.333%;
  }
  
  .column > .col-lg-5 {
    height: 41.667%;
  }
  
  .column > .col-lg-6 {
    height: 50%;
  }
  
  .column > .col-lg-7 {
    height: 58.333%;
  }
  
  .column > .col-lg-8 {
    height: 66.667%;
  }
  
  .column > .col-lg-9 {
    height: 75%;
  }
  
  .column > .col-lg-10 {
    height: 83.333%;
  }
  
  .column > .col-lg-11 {
    height: 91.667%;
  }
  
  .column > .col-lg-12 {
    height: 100%;
  }
}

@media (min-width: 	1920px) {
  .row > .col-xl-1 {
    width: 8.333%;
  }
  
  .row > .col-xl-2 {
    width: 16.667%;
  }
  
  .row > .col-xl-3 {
    width: 25%;
  }
  
  .row > .col-xl-4 {
    width: 33.333%;
  }
  
  .row > .col-xl-5 {
    width: 41.667%;
  }
  
  .row > .col-xl-6 {
    width: 50%;
  }
  
  .row > .col-xl-7 {
    width: 58.333%;
  }
  
  .row > .col-xl-8 {
    width: 66.667%;
  }
  
  .row > .col-xl-9 {
    width: 75%;
  }
  
  .row > .col-xl-10 {
    width: 83.333%;
  }
  
  .row > .col-xl-11 {
    width: 91.667%;
  }
  
  .row > .col-xl-12 {
    width: 100%;
  }

  .column > .col-xl-1 {
    height: 8.333%;
  }
  
  .column > .col-xl-2 {
    height: 16.667%;
  }
  
  .column > .col-xl-3 {
    height: 25%;
  }
  
  .column > .col-xl-4 {
    height: 33.333%;
  }
  
  .column > .col-xl-5 {
    height: 41.667%;
  }
  
  .column > .col-xl-6 {
    height: 50%;
  }
  
  .column > .col-xl-7 {
    height: 58.333%;
  }
  
  .column > .col-xl-8 {
    height: 66.667%;
  }
  
  .column > .col-xl-9 {
    height: 75%;
  }
  
  .column > .col-xl-10 {
    height: 83.333%;
  }
  
  .column > .col-xl-11 {
    height: 91.667%;
  }
  
  .column > .col-xl-12 {
    height: 100%;
  }
}

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

.justify-between {
  justify-content: space-between;
}

/* Utils */

.fit {
  width: 100%;
  height: 100%;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.border-box {
  box-sizing: border-box;
}

.flex-1 {
  flex: 1;
}

.block {
  display: block;
}

/* Spacing */

.no-padding {
  padding: 0;
}

.padding-xs {
  padding: 4px;
}

.padding-sm {
  padding: 8px;
}

.padding-md {
  padding: 16px;
}

.padding-lg {
  padding: 24px;
}

.padding-xl {
  padding: 32px;
}

.no-margin {
  margin: 0;
}

.margin-xs {
  margin: 4px;
}

.margin-sm {
  margin: 8px;
}

.margin-md {
  margin: 16px;
}

.margin-lg {
  margin: 24px;
}

.margin-xl {
  margin: 32px;
}

/* List */

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links */

a {
  color: #B71C1C;
}

a.button {
  display: inline-block;
  background-color: #B71C1C;
  color: #FFFFFF;
  padding: 8px;
  margin: 8px;
  text-align: center;
}

/* List & list item */

.picture-placeholder {
  display: inline-block;
  background-color: #AAAAAA;
  color: #FFFFFF;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 36px;
}

.listitem-picture {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

li.listitem {
  display: flex;
  padding: 16px;
}

li.listitem:hover {
  background-color: #00000022;
}

li.listitem > a {
  display: flex;
  width: 100%;
  flex: 1;
  color: #000000;
}

li.listitem .side {
  width: 80px;
  margin-right: 16px;
}

li.listitem .main {
  flex: 10000 1 0%;
}

li.listitem .main .title {
  padding: 0 0 4px 0;
}

/* Navbar */

.navbar {
  background: #B71C1C;
  display: flex;
  align-items: center;
  color: white;
  flex-wrap: wrap;
}

.navbar-section {
  padding: 0 8px;
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-logo {
  background-color: #FFFFFF;
  background-image: url("/logo.png");
  background-size: contain;
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  margin-left: 8px;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar li {
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.navbar-link {
  color: white;
  padding: 0 8px;
}

.navbar-element {
  height: 100%;
  display: inline-flex;
  align-items: center;
  height: 50px;
}

.navbar-link:hover {
  background-color: #FFFFFF28;
}

.navbar-link.router-link-exact-active {
  background-color: #FFFFFF28;
}

.title {
  margin: 0;
  font-weight: 200;
}

/* Map */

.map {
  background-color: #AAAAAA;
  background-size: 100% 100%;
  display: flex;
  min-height: 40vh;
}

/* Pagination */

ul.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

ul.pagination li {
  background-color: #B71C1C;
  color: #FFFFFF;
  padding: 8px;
  margin: 8px;
  flex: 1;
  text-align: center;
}

ul.pagination li[disable] {
  opacity: 0.6;
}

ul.pagination li a {
  color: #FFFFFF;
}

/* Button */

button {
  background-color: #B71C1C;
  color: #FFFFFF;
  text-decoration: underline;
  font-size: inherit;
  padding: 8px;
  margin: 8px;
  border: 0;
}

button.accent {
  background-color: #FFFFFF;
  color: #258DD4;
}

.absolute-full {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.position-relative {
  position: relative;
}

/* Map layaout */

@media (min-width: 	1024px) {
  .map-layout-container {
    flex-wrap: wrap;
  }
}

@media (min-width: 	1024px) {
  .map-layout-container {
    flex-wrap: nowrap;
  }
}

/* Home */

.home-block {
  background-color: #00000008;
}

.home-block-link {
  display: block;
  color: black;
}

/* Route & event detail */

.description {
  white-space: pre-line;
}

.tag {
  background-color: #EEEEEE;
}

.tag a {
  color: #000000;
  font-size: 12px;
  font-weight: bold;
}

.avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}