body {
  font-size: .875rem;
}

a:hover {
    cursor: pointer;
}

.lienPerso {
    color: black;
}

.lienPerso:hover {
    cursor: pointer;
}

#compass {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 30px;
}

#bezel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 3px solid #eee;
  border-radius: 50%;
}

#axis {
  position: absolute;
  left: 46px;
  top: 45px;
  width: 5px;
  height: 5px;
  background: #fff;
  border: 3px solid #666;
  border-radius: 50%;
}

#needle {
  position: absolute;
  left: 48px;
  width: 2px;
  height: 80px;
  top: 8px;
  -webkit-animation: spin 2s ease infinite;
  -moz-animation: spin 2s ease infinite;
  animation: spin 2s ease infinite;
}

#needle:after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-bottom: 40px solid #FF3600;
}

#needle:before {
  content: '';
  position: absolute;
  top: 40px;
  left: -1px;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-top: 40px solid #666;
}

#N {
  position: absolute;
  top: 5px;
  left: 40px;
  color: #FF3600;
}

#E {
  position: absolute;
  right: 5px;
  top: 36px;
}

#S {
  position: absolute;
  bottom: 5px;
  left: 40px;
}

#W {
  position: absolute;
  left: 5px;
  top: 36px;
}

.dir {
  font-family: arial, sans-serif;
  color: #999;
  font-size: 10px;
  background: #fff;
  padding: 5px;
}

.quad {
  display: block;
  width: 1px;
  background: #ddd;
  height: 80px;
  position: absolute;
  top: 8px;
  left: 48px;
}

#NWSE {
  transform: rotate(45deg);
}

#NESW {
  transform: rotate(-45deg);
}

#WE {
  transform: rotate(90deg);
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*#loader{
    height: 100vh;
    width:100%;
    background-color:#ffffff;
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
}
 
.loader{
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    margin-top: 50vh;
    margin-left: 50%;
}

.loader-quart{
    border-radius: 50px;
    border: 6px solid transparent;
}

.loader-quart:after{
    content: '';
    position: absolute;
    top: -6px; left: -6px;
    bottom: -6px; right: -6px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border-bottom: 5px solid rgb(0, 90, 148);
    border-top: 5px solid rgb(197, 34, 29);
    animation:spin 1s linear infinite;
}

@keyframes spin{
    0%{ transform: rotate(0deg);}
    100%{ transform: rotate(360deg);}
}*/

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-family: calibri;
  color: #e1ffff;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-item.active {
    border-left: 3px solid #badefe;
  color: #007bff;
  background-color: #00a2ff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

.sidebar .nav-item:hover {
    border-left: 3px solid #badefe;
    background-color: #00a2ff;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    color: #007bff;
}

/*
 * Content
 */

[role="main"] {
  padding-top: 48px; /* Space for fixed navbar */
}

/*
 * Navbar
 */

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, .25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

/*
 * Utilities
 */

.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }
