@charset "UTF-8";
/* CSS Document */

#assistant {
  position: fixed;
  bottom: 30px;
  right: 50px;
  background-color: #fff;
  padding: 10px;
  border-radius: 50px;
  border: 10px solid #CA0A1D;
  width: 200px;
	-webkit-box-shadow: 5px 10px 15px 1px rgba(0,0,0,0.46); 
	box-shadow: 5px 10px 15px 1px rgba(0,0,0,0.46);
	z-index: 100000;
}

#assistant .action{
	text-align: center;
	cursor: default;
}

#assistant .action.lien{
	cursor: pointer;
}
#assistant .action.lien:hover{
	text-decoration: none;
}

#assistant .action .msg,
#assistant .action i{
	float: left;
}

#assistant .action .msg{
	width: calc( 100% - 30px);
}

#assistant .action i {
  width: 30px;
  border-radius: 100px;
  padding: 7px;
  margin-top: 8px;
  background-color: #CA0A1D;
  color: #fff;
}

#assistant .titreEtape {
  font-weight: 900;
  border-bottom: 1px solid red;
  text-align: center;
  margin-bottom: 10px;
}

#resetAssistant {
	float: left;
	width: 100%;
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid red;
  color: #CA0A1D;
  cursor: pointer;
}

.rise-shake {
  animation: jump-shaking 0.83s 0.5s 1;
}

#assistant-overlay{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0, 0, 0.85);
  z-index: 95000;
}
@keyframes jump-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateY(-9px) }
  35% { transform: translateY(-9px) rotate(17deg) }
  55% { transform: translateY(-9px) rotate(-17deg) }
  65% { transform: translateY(-9px) rotate(17deg) }
  75% { transform: translateY(-9px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}

.overlay-fadeOut{
	animation: overlay-fadeOut 1s 2s 1;
}

@keyframes overlay-fadeOut {
  0% 		{ opacity: 1 }
  100% 	{ opacity: 0 }
}