/* GoTop Button
-------------------------------------------------------------- */

.go-top {
   position: fixed;
   right: 10px;
   bottom: 10px;
   opacity: 0;
   color: black;
   font-size: 22px;
   line-height: 22px;
   padding-left: 8px;
   padding-right: 8px;
   padding-top: 4px;
   padding-bottom: 4px;
   background-color: transparent;
   border: 1px solid black;
   font-family: "ibmPlexMonoRegular";
   cursor: pointer;
   -webkit-transition: all 0.1s ease-in-out;
   -moz-transition: all 0.1s ease-in-out;
   -ms-transition: all 0.1s ease-in-out;
   -o-transition: all 0.1s ease-in-out;
   transition: all 0.1s ease-in-out;
}

#go_top_actualite {
   right: 49vw;
   background-color: transparent;
   color: white;
   border: 1px solid white;
}

#go_top_catalogue {
   background-color: white;
}

#go_top_catalogue:hover {
   background-color: black;
   color: white;
}

#go_top_actualite:hover {
   background-color: white;
   color: black;
   border: 1px solid black;
}

.go-top:hover {
   color: white;
   background-color: black;
}

.go-top.show {
   opacity: 1;
}

.show.on_catalogue {
   opacity: 1;

}

.show.on_actualite {
   opacity: 1;

}

@media screen and (max-width: 834px) {


   .go-top {
      bottom: 15vh;
      font-size: 20px;
      line-height: 20px;
      padding-left: 7px;
      padding-right: 7px;
      padding-top: 3px;
      padding-bottom: 3px;

   }

   #go_top_actualite {
      bottom: 5vh;
      right: 3vw;
      background-color: white;
      color: black;
      border: 1px solid black;
   }

   #go_top_catalogue {
      bottom: 5vh;
      right: 3vw;
   }

   #go_top_actualite:hover {
      background-color: black;
      color: white;
      border: 1px solid white;
   }


}

@media screen and (max-width: 734px) {


   .go-top {
      bottom: 250px;
   }


}