@font-face {
  font-family: roboto;
  src: url(/images/Roboto-Regular.ttf);
}
@font-face {
  font-family: lato;
  src: url(/images/Lato-Light.ttf);
}
body {
  font-family: roboto;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.flat {
  border: 0;
  background: none;
  box-shadow: none;
  border-radius: 0px;
  cursor: pointer;
}

.flat:hover {
  text-decoration: underline;
}

:root {
  --aspect-ratio: 1.333;
}

my-home .banner {
  /*
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  */
  height: 400px;
  background-position: 50% 50%;
  background-image: url(/images/IMG_20230519_140852_559.jpg);
  background-size: cover;
  filter: brightness(50%) blur(1px);
}
@media screen and (max-width: 767px) {
  my-home .banner {
    height: 300px;
  }
}
my-home .title {
  font-family: Lato, sans-serif;
  position: absolute;
  top: 90px;
  width: 100%;
  font-size: 50px;
  color: white;
  text-align: center;
}
my-home .title .quote {
  font-size: 13px;
  font-style: italic;
}
my-home .description {
  width: 800px;
}
@media screen and (max-width: 767px) {
  my-home .description {
    width: 100%;
  }
}
my-home footer {
  display: flex;
  justify-content: center;
  margin: 20px;
}
my-home .app {
  display: flex;
  align-items: center;
  flex-direction: column;
}
my-home .app button {
  background-color: rgb(43, 131, 50);
  font-size: 20px;
  padding: 20px;
  color: white;
  border: none;
  border-radius: 10px;
}
@media (display-mode: standalone) {
  my-home .app {
    display: none;
  }
}
@media (display-mode: fullscreen) {
  my-home .app {
    display: none;
  }
}
my-home .tiles-container {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  justify-items: center;
}
my-home .tiles-container .tiles {
  width: 800px;
  border: solid 10px white;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 10px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  my-home .tiles-container .tiles {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
my-home .tiles-container .tiles a {
  text-decoration: none;
}
my-home .tiles-container .tiles .tile {
  height: 300px;
  display: grid;
  background-position: 50% 100%;
  background-size: cover;
}
my-home .tiles-container .tiles .tile:hover {
  filter: sepia();
}
my-home .tiles-container .tiles .tile .tile-text {
  align-self: end;
  margin: 20px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
my-home .tiles-container .tiles .tile {
  grid-column: span 1;
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tiles .tile.tile-last-activity {
    grid-column: span 6;
  }
}
my-home .tiles-container .tiles .tile.tile-last-activity {
  color: white;
  background-color: #3765a3;
  justify-content: center;
  align-content: center;
}
my-home .tiles-container .tiles .tile.tile-last-activity .tile-last-activity-text {
  text-align: center;
}
my-home .tiles-container .tiles .tile.tile-last-activity .tile-last-activity-text .last-update {
  font-weight: bold;
  font-size: larger;
}
my-home .tiles-container .tiles .tile.social:hover {
  filter: none;
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tiles .tile.social {
    grid-column: span 4;
  }
}
my-home .tiles-container .tiles .tile.social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50% 50%;
}

.social-block {
  background-color: #55acee;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  background-size: 50px;
}
.social-block:hover {
  filter: brightness(1.5);
}

.social-block.facebook {
  background-color: #3765a3;
  background-image: url("https://assets.website-files.com/5e4b197bdc74af0daa4a9e2d/5e4b197bdc74afad9e4a9e50_facebook.svg");
}

.social-block.spotify {
  background-color: #1ed760;
  background-image: url("/images/spotify.svg");
}

.social-block.instagram {
  background-color: #f51763;
  background-image: url("/images/instagram.svg");
}

.social-block.strava {
  background-color: #ea6221;
  background-image: url("/images/strava.svg");
}

.social-block.email {
  background-color: #3765a3;
  background-image: url("/images/envelope.svg");
}

.social-block.whatsapp {
  background-color: #25ca43;
  background-image: url("/images/whatsapp.svg");
}

@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-1 {
    grid-column: span 1;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-2 {
    grid-column: span 2;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-3 {
    grid-column: span 3;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-6 {
    grid-column: span 6;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-8 {
    grid-column: span 8;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-9 {
    grid-column: span 9;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-10 {
    grid-column: span 10;
  }
}
@media screen and (min-width: 767px) {
  my-home .tiles-container .tile.lg-12 {
    grid-column: span 12;
  }
}
my-home .tiles-container .tile.hidden {
  display: none;
}

:root {
  --sidebar-width-big: 600px;
  --swiper-height-big: 400px;
  --sidebar-height-big: calc(var(--swiper-height-big) + var(--swiper-title-height));
  --primary: #328080;
  --swiper-navigation-color: white;
  --navbar-height: 50px;
  --swiper-title-height: 60px;
  --swiper-height: 190px;
  --sidebar-height: calc(var(--swiper-height) + var(--swiper-title-height));
}

my-page-trip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-100vw - 300px);
  right: calc(100vw + 300px);
}
my-page-trip.shown {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0px;
}
my-page-trip {
  overflow-x: visible;
  overflow-y: visible;
  /*transition: all 2.0s ease-in-out;*/
}
my-page-trip .object-container {
  position: absolute;
  bottom: 0px;
  left: 100vw;
  width: 300px;
}

my-page-trip-navbar {
  z-index: 1000;
  background-color: var(--primary);
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: var(--navbar-height);
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr 1fr;
  color: white;
}
my-page-trip-navbar > div {
  align-self: center;
  justify-self: center;
}
my-page-trip-navbar a {
  color: white;
  text-decoration: none;
}
my-page-trip-navbar a.homeLink {
  display: block;
  background-image: url(/images/house.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}

my-page-trip.v2 my-page-trip-navbar {
  bottom: unset;
  top: 0px;
}

/* my-map */
@media screen and (max-width: 767px) {
  my-page-trip my-map {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: calc(100lvh - var(--navbar-height));
  }
  my-page-trip my-map .activeArea {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: calc(0.75 * (var(--sidebar-height) + var(--navbar-height)));
  }
}
@media screen and (min-width: 767px) {
  my-page-trip my-map {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
  my-page-trip my-map .activeArea {
    position: absolute;
    top: 0px;
    left: calc(0.75 * (var(--sidebar-width-big)));
    right: 0px;
    bottom: 0px;
  }
}
my-page-trip my-map .map {
  filter: hue-rotate(17deg) saturate(1.5);
  width: 100%;
  height: 100%;
}
my-page-trip my-map .map-icon {
  background-color: white;
  border: solid 1px grey;
  border-radius: 6px;
}
my-page-trip my-map .map-icon-activity {
  background-color: white;
  border: solid 1px orange;
  border-radius: 6px;
}
my-page-trip my-map .map-icon-active {
  background-color: orangered;
}
my-page-trip my-map .map-path-active {
  stroke: orangered;
}

/* map-progress-bar */
my-page-trip my-map .map-progress-bar {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 20px;
  background-color: lightblue;
}
my-page-trip my-map .map-progress-bar-text {
  position: absolute;
  top: 0;
  color: white;
}
my-page-trip my-map .map-progress-bar-background {
  position: absolute;
  top: 0;
  background-color: green;
  height: 100%;
}

my-page-trip.v2 my-map {
  top: var(--navbar-height);
  bottom: 0;
}

@media screen and (max-width: 767px) {
  my-details {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: var(--sidebar-height);
    background-color: white;
    z-index: 1000;
    box-shadow: 11px 1px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    transition: all 0.5s ease-in-out;
  }
  my-details.hidden {
    margin-bottom: calc(0px - var(--sidebar-height));
  }
}
@media screen and (min-width: 767px) {
  my-details {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: var(--sidebar-width-big);
    background-color: white;
    z-index: 1000;
    box-shadow: 11px 1px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    transition: all 0.5s ease-in-out;
  }
  my-details.hidden {
    margin-left: calc(0px - var(--sidebar-width-big));
  }
}
my-details .title {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 64px;
  background-color: var(--primary);
  color: white;
  width: 100%;
}

my-details .title .close {
  margin-right: 20px;
  font-weight: bold;
  border: 0;
  background: none;
  box-shadow: none;
  border-radius: 0px;
  color: inherit;
  cursor: pointer;
}

my-details .arrows {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

my-details .previous {
  justify-self: left;
}

my-details .next {
  justify-self: right;
}

my-details img {
  max-width: 100%;
}

my-page-gallery {
  position: fixed;
  top: 0;
  bottom: 0px;
  left: 0;
  right: 0;
  overflow-y: scroll;
  z-index: 2;
  background-color: white;
  transition: bottom 0.5s ease-in-out;
}
my-page-gallery.collapsed {
  bottom: 100lvh;
  overflow-y: hidden;
  padding: 0;
}
my-page-gallery .page-container {
  padding: 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2px;
  column-gap: 2px;
  margin-bottom: var(--navbar-height);
}

my-page-gallery.shown {
  display: block;
}

my-page-gallery .thumbnail {
  aspect-ratio: var(--aspect-ratio);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
my-page-gallery .thumbnail:hover {
  filter: sepia();
}

my-page-gallery .swiper-dialog {
  display: none;
  background-color: black;
}
my-page-gallery .swiper-dialog.show {
  z-index: 1001;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
my-page-gallery .swiper-dialog .button-close {
  z-index: 1002;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  padding: 10px;
  font-size: 20px;
}
my-page-gallery .swiper-dialog .swiper {
  width: 100vw;
  height: 100vh;
}
my-page-gallery .swiper-dialog .swiper-slide-content {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
}

my-sidebar {
  background-color: white;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  my-sidebar {
    position: fixed;
    bottom: calc(var(--navbar-height) + 10px);
    left: 10px;
    right: 10px;
    box-shadow: -1px 1px 6px 3px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 767px) {
  my-sidebar {
    position: absolute;
    top: calc((100vh - var(--sidebar-height-big) - var(--navbar-height)) / 2);
    left: 10px;
    width: var(--sidebar-width-big);
    background-color: white;
    box-shadow: 11px 1px 10px 0px rgba(0, 0, 0, 0.1);
  }
}

my-sidebar .title {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 64px;
  background-color: var(--primary);
  color: white;
  width: 100%;
}
my-sidebar .items {
  height: calc(100% - 64px);
  overflow-y: scroll;
}
my-sidebar .title img {
  background-color: white;
  width: 32px;
  border-radius: 100%;
  margin-right: 20px;
  margin-left: 20px;
}
my-sidebar .part {
  font-weight: bold;
  margin-top: 10px;
  margin-left: 20px;
  margin-bottom: 5px;
}
my-sidebar {
  /* Swiper */
}
my-sidebar .swiper-title {
  text-align: left;
  height: var(--swiper-title-height);
  padding-top: 10px;
  padding-left: 10px;
}
my-sidebar .swiper {
  aspect-ratio: var(--aspect-ratio);
}
@media screen and (min-width: 767px) {
  my-sidebar .swiper {
    width: var(--sidebar-width-big);
  }
}
my-sidebar .swiper-slide {
  perspective: 1000px;
}
my-sidebar .swiper-slide .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
my-sidebar .swiper-slide .flip-card-inner button {
  position: absolute;
  top: 0px;
  right: 0px;
  border: none;
  background-color: transparent;
  margin: 5px;
}
my-sidebar .swiper-slide .flip-card-front {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
my-sidebar .swiper-slide .flip-card-front,
my-sidebar .swiper-slide .flip-card-back {
  backface-visibility: hidden;
}
my-sidebar {
  /* Style the front side (fallback if image is missing) */
}
my-sidebar .flip-card-front button {
  color: white;
}
my-sidebar {
  /* Style the back side */
}
my-sidebar .flip-card-back {
  width: 100%;
  height: 100%;
  background-color: white;
  color: black;
  padding: 20px;
  padding-left: 40px;
  padding-right: 40px;
  border: solid 1px black;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
}
my-sidebar .flip-card-back a {
  color: black;
}
my-sidebar .flip-card-back button {
  color: black;
}
my-sidebar {
  --arrow-size: 40px;
  --half-arrow-size: 20px;
}
my-sidebar .up-arrow {
  width: var(--arrow-size);
  height: var(--arrow-size);
  background-color: white;
  border: solid 1px black;
  border-radius: var(--arrow-size);
  margin-left: calc(50vw - var(--half-arrow-size));
  margin-top: calc(0px - var(--half-arrow-size));
  padding: 15px;
}
my-sidebar .swiper-slide.back .flip-card-inner {
  transform: rotateY(180deg);
}
my-sidebar .close-button,
my-sidebar .show-button {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 40px;
  height: 40px;
}
my-sidebar .show-button {
  display: none;
}

my-sidebar.closed .show-button {
  display: block;
}
my-sidebar.closed .close-button {
  display: none;
}
@media screen and (min-width: 767px) {
  my-sidebar.closed {
    top: 5px;
  }
}
my-sidebar.closed .swiper {
  height: 20px;
  width: 100%;
}

:root {
  --draggable-part-height: 30px;
}

.dragButton {
  position: absolute;
  bottom: var(--navbar-height);
  height: var(--draggable-part-height);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  touch-action: none;
  width: 100%;
  border: none;
  background: white;
  z-index: 2;
}

my-page-blog2 {
  background-color: white;
  box-shadow: 11px 1px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 5px;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0px;
  top: 0px;
  z-index: 1;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transition: top 0.5s ease-in-out;
}
my-page-blog2 h1 {
  text-align: center;
}
my-page-blog2.collapsed {
  top: 100lvh;
  overflow-y: hidden;
}
my-page-blog2.dragged {
  transition: unset;
}
@media screen and (min-width: 767px) {
  my-page-blog2 .page-container {
    width: 500px;
    margin: auto;
  }
}
my-page-blog2 .page-container {
  margin-bottom: 50vh;
}
my-page-blog2 .activity-separator {
  width: 225px;
  height: 1px;
  background-color: black;
  margin: auto;
  margin-top: 20px;
}
my-page-blog2.shown {
  display: block;
}
my-page-blog2 .title {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 64px;
  background-color: var(--primary);
  color: white;
  width: 100%;
}
my-page-blog2 .title img {
  background-color: white;
  width: 32px;
  border-radius: 100%;
  margin-right: 20px;
  margin-left: 20px;
}
my-page-blog2 .part {
  font-weight: bold;
  margin-top: 10px;
  margin-left: 20px;
  margin-bottom: 5px;
}
my-page-blog2 {
  /* Swiper */
}
my-page-blog2 .swiper-title-anchor {
  height: 20px;
}
my-page-blog2 .swiper-title {
  text-align: center;
}
my-page-blog2 .swiper-thumbs {
  margin-top: 4px;
}
my-page-blog2 .swiper-thumbs .flip-card-front {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: var(--aspect-ratio);
}
my-page-blog2 .swiper-main .flip-card-front,
my-page-blog2 .no-swiper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: var(--aspect-ratio);
}
my-page-blog2 .audio-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
my-page-blog2 .audio-container audio {
  /*
  @media screen and (max-width: 767px) {
      width: 100%;
  }*/
}
my-page-blog2 .text-container {
  position: relative;
}
my-page-blog2 .text-container .show-transcript-container {
  position: absolute;
  top: -22px;
  right: 0px;
}
my-page-blog2 .text-container .show-transcript-container .transcript-button {
  border-radius: 5px;
  border: solid 1px gray;
  padding: 2px 10px;
  margin-right: 5px;
  font-size: 12px;
  font-weight: bold;
}
my-page-blog2 .text-container .show-transcript-container .transcript-button.show {
  background-color: darkcyan;
  color: white;
  display: none;
}
my-page-blog2 .text-container .show-transcript-container .transcript-button.hide {
  background-color: white;
  border-color: darkcyan;
}
my-page-blog2 .text-container .text-content {
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
my-page-blog2 .text-container.blurred .text-content {
  filter: blur(4px);
  max-height: 56px;
}
my-page-blog2 .text-container.blurred .show-transcript-container .transcript-button.hide {
  display: none;
}
my-page-blog2 .text-container.blurred .show-transcript-container .transcript-button.show {
  display: block;
}
my-page-blog2 .button-lang-container {
  display: flex;
  justify-content: left;
}
my-page-blog2 .button-lang-container .button-lang {
  padding-bottom: 5px;
}

/* Add activity */
my-add-activity {
  overflow-x: scroll;
}

my-add-activity .infos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

my-add-activity .infos input {
  height: 30px;
  margin-top: 5px;
  width: 100%;
}

/* Add activities */
my-import-activities {
  overflow-x: scroll;
}

my-import-activities-item {
  display: block;
  width: 5000px;
}

my-import-activities-item input {
  width: 50px;
}

my-import-activities-item input {
  display: inline-block;
}

/* Edit activity map */
my-edit-activity-map .map {
  display: block;
  height: 400px;
}

my-edit-activity-map .sidebar {
  display: block;
}

my-edit-activity-map .buttons {
  width: 100%;
  height: 40%;
}

my-edit-activity-map .buttons button {
  width: 100%;
}

/* Edit phots */
my-add-activity .photo-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}
my-add-activity .photo-container my-edit-photos-item {
  display: flex;
  justify-content: right;
  aspect-ratio: 1.333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
my-add-activity .photo-container my-edit-photos-item button {
  height: 32px;
}

/* edit text */
my-activity-text {
  display: block;
  margin: 5px;
}

my-activity-text > div.buttons {
  display: grid;
  grid-template-columns: 1fr 50px 50px;
}

my-activity-text textarea.title {
  width: 100%;
  height: 50px;
}

my-activity-text textarea.content {
  width: 100%;
  height: 100px;
}

/* Files */
my-files .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
}

my-files .thumbnail {
  position: relative;
  display: block;
  padding: 10px;
  border: solid 1px grey;
  border-radius: 10px;
  background-color: lightgrey;
}

my-files .thumbnail .title {
  display: block;
  color: black;
  height: 30px;
  font-size: 12px;
}

my-files .thumbnail .picture {
  height: calc(25vw - 20px);
  width: calc(25vw - 20px);
}

my-files .thumbnail .mark {
  display: block;
  background-color: transparent;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0px;
  right: 0px;
}

my-files .thumbnail.selected {
  background-color: green;
}

/* icons */
.transparent-icon {
  border: none;
  background-color: transparent;
}

.my-plane-icon {
  width: 36px;
  height: 32px;
  background: url(/images/plane.svg);
  background-size: cover;
  fill: blue;
}

my-map .goToBtn {
  position: absolute;
  top: 75px;
  left: 3px;
  z-index: 1000;
}

.settingsDialogContainer {
  display: flex;
  flex-direction: column;
}
.settingsDialogContainer a {
  margin-bottom: 6px;
  font-size: 13px;
  color: black;
  border: solid 1px gray;
  border-radius: 2px;
  padding: 1px 5px;
  text-decoration: none;
}
.settingsDialogContainer a:visited {
  color: black;
}
.settingsDialogContainer button {
  margin-bottom: 6px;
  font-size: 13px;
  border: solid 1px gray;
  border-radius: 2px;
  background-color: transparent;
}
.settingsDialogContainer .close-button {
  margin-top: 5px;
  background-color: var(--primary);
}

my-edit-home {
  display: block;
}
my-edit-home .welcome {
  margin-top: 20px;
  font-size: 20px;
  display: flex;
  justify-content: center;
}
my-edit-home .changes {
  margin-top: 10px;
  border: solid 1px darkcyan;
  background-color: rgb(255, 123, 0);
  color: white;
  padding: 2px;
}
my-edit-home .lastActivities {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}
my-edit-home .lastActivities div {
  display: flex;
  border: solid 1px darkcyan;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
my-edit-home .lastActivities a {
  text-align: center;
  text-decoration: none;
}

.contentWithEditNavbar {
  margin-bottom: 50px;
  padding: 4px;
}

.editNavbar {
  z-index: 1000;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 50px;
  background-color: var(--primary);
  display: grid;
  grid-auto-flow: column;
  column-gap: 1px;
}
.editNavbar button {
  color: white;
  background: none;
  border: none;
}
.editNavbar a {
  color: white;
  text-decoration: none;
  line-height: 100%;
  padding-top: 16px;
  text-align: center;
  min-width: 30px;
}

.editPage {
  position: fixed;
  overflow: scroll;
  top: 0px;
  left: 0;
  right: 0;
  bottom: var(--navbar-height);
  padding: 4px;
}

.houseIcon {
  background-image: url(/images/house.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  display: inline-block;
}

my-edit-offline-status div {
  z-index: 1000;
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  height: 10px;
  font-size: 13px;
  color: white;
  display: none;
}
my-edit-offline-status div.error {
  display: flex;
  justify-content: center;
  background-color: orange;
}
my-edit-offline-status div.ok {
  display: flex;
  justify-content: center;
  background-color: green;
}

my-edit-trip .header {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
my-edit-trip h1 {
  display: flex;
  margin-right: 5px;
  flex-direction: column;
  justify-content: end;
  padding: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0px;
  height: 100px;
  aspect-ratio: var(--aspect-ratio);
  font-size: 20px;
  color: white;
}
my-edit-trip h2 {
  font-size: 16px;
}
my-edit-trip my-map {
  display: block;
  height: 300px;
  position: relative;
}
my-edit-trip my-map .map {
  filter: hue-rotate(17deg) saturate(1.5);
  width: 100%;
  height: 100%;
}
my-edit-trip my-edit-activities-item a {
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
my-edit-trip my-edit-activities-item a .formattedDate {
  display: inline-block;
  text-align: right;
  width: 70px;
}
my-edit-trip my-map {
  margin-top: 20px;
}

my-recording {
  display: block;
  margin-top: 10px;
}
my-recording audio {
  width: 100%;
}
my-recording > div {
  display: grid;
  grid-template-columns: 1fr 50px 50px;
}
my-recording > div select {
  height: 25px;
}

my-add-activity .deleteButton {
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  right: 10px;
}

.show-lang-fr .lang-en {
  display: none;
}
.show-lang-fr .button-lang-fr {
  font-weight: bold;
  text-decoration: underline;
}

.show-lang-en .lang-fr {
  display: none;
}
.show-lang-en .button-lang-en {
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .phone {
    display: none;
  }
}

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