diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index 91bff8ce45845f2f048d752ec80c959ed54f430f..95ae40f2b216ed5e6c52ef3c64fe6ced1d28d604 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -66,19 +66,4 @@
     align-items: center;
     display: flex;
   }
-  // Find somthing better than redeclare class. Mixins ?
-  .ico-dot-available {
-    height: 12px;
-    width: 12px;
-    background-color: $green;
-    border-radius: 50%;
-    margin-right: 8px;
-  }
-  .ico-dot-unavailable {
-    height: 12px;
-    width: 12px;
-    background-color: $grey;
-    border-radius: 50%;
-    margin-right: 8px;
-  }
 }
diff --git a/src/app/models/structure.model.ts b/src/app/models/structure.model.ts
index 849e79821733b93534e4047d5730d7c46060c85e..604ce17e806281624e9690728a780fdc0934e8ee 100644
--- a/src/app/models/structure.model.ts
+++ b/src/app/models/structure.model.ts
@@ -66,24 +66,24 @@ export class Structure {
     } else if (this.openedOn.day) {
       return 'Fermé - Ouvre ' + this.openedOn.day + ' à ' + this.openedOn.schedule;
     } else {
-      return 'Fermé - Aucun horaire disponible ';
+      return 'Aucun horaire disponible ';
     }
   }
 
   /**
    * Return a range, according to the distance, between [1,3] to get a distance reference.
-   * - [0,500m] => 1
-   * - [500m,1km] => 2
-   * - [1km, [ => 3
+   * - [0,5km] => 1
+   * - [5km,10km] => 2
+   * - [10km, [ => 3
    */
   public getDistanceRange(): number {
     if (!this.distance) {
       return 3;
     } else {
       // If it's in km
-      if (this.distance.length > 3) {
+      if (parseInt(this.distance, 10) > 10000) {
         return 3;
-      } else if (parseInt(this.distance, 10) < 500) {
+      } else if (parseInt(this.distance, 10) < 5000) {
         // If it's between 0 and 500 m
         return 1;
       } else {
diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index fa7b23174678a0538e69827541bb2780ebe9f006..248b2a3869e6d62cb78a159a4624c0c47d5d9b73 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -47,7 +47,10 @@
       <span>{{ structure.openDisplay() }}</span>
     </div>
     <ng-template #closed>
-      <span class="ico-dot-unavailable"></span>
+      <span *ngIf="structure.openedOn.day; else unkown" class="ico-dot-unavailable"></span>
+    </ng-template>
+    <ng-template #unkown>
+      <span class="ico-dot-unknown"></span>
     </ng-template>
   </div>
 </div>
diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index 3fe9e2edd479c5dfeb456ff2e069299ba1a0b598..f6db9e5397f396208c9c1164e92a5c535174c274 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -27,5 +27,6 @@
   span {
     @include cn-regular-14;
     margin-right: 8px;
+    display: inline-block;
   }
 }
diff --git a/src/assets/scss/_icons.scss b/src/assets/scss/_icons.scss
index 486ca124008d69c47c684c2d2c2f1a3eb24ff5cc..0ff36f179ffe167251b4cc06eae16c86b047adb5 100644
--- a/src/assets/scss/_icons.scss
+++ b/src/assets/scss/_icons.scss
@@ -55,21 +55,21 @@
   width: 12px;
   background-color: $green;
   border-radius: 50%;
-  display: inline-block;
+  margin-right: 8px;
 }
 .ico-dot-unavailable {
   height: 12px;
   width: 12px;
   background-color: $red;
   border-radius: 50%;
-  display: inline-block;
+  margin-right: 8px;
 }
 .ico-dot-unknown {
   height: 12px;
   width: 12px;
   background-color: $grey-4;
   border-radius: 50%;
-  display: inline-block;
+  margin-right: 8px;
 }
 
 .ico-marker-pin {
diff --git a/src/assets/scss/_typography.scss b/src/assets/scss/_typography.scss
index 5ddcc8aa3f484ba8cea776b499c0ec0005779d9c..bd17bb09f02f489d049e6cd2a20c0495658fdb2a 100644
--- a/src/assets/scss/_typography.scss
+++ b/src/assets/scss/_typography.scss
@@ -1,6 +1,6 @@
 $text-font: 'Trebuchet MS', 'Helvetica', sans-serif;
 $footer-text-font: 'Arial', 'Helvetica', sans-serif;
-$title-font: 'Courier New', 'Helvetica', sans-serif;
+$title-font: 'Trebuchet MS', 'Helvetica', sans-serif;
 
 $font-size-xsmall: 0.875em; // 14px
 $font-size-small: 1em; // 16px
diff --git a/src/index.html b/src/index.html
index e3de07cb0d1ac1c7fed3b97dfb751f37fd28efd6..5780f878168941405fa8739e6417f88057c8efe0 100644
--- a/src/index.html
+++ b/src/index.html
@@ -2,7 +2,7 @@
 <html lang="en">
   <head>
     <meta charset="utf-8" />
-    <title>Pamn</title>
+    <title>Ram</title>
     <base href="/" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <link rel="icon" type="image/x-icon" href="favicon.ico" />