/*custom font*/
@import url( https://fonts.googleapis.com/css?family=Merriweather+Sans );

/*====================================================================================*
======= Tag tarif                                                                     *
=====================================================================================*/

/******* VERT *************************************************************************/
.tags.A a {
  float: left;
  position: relative;
  width: auto;
  height: 30px;
  margin-left: 20px;
  padding: 8px 12px;
  line-height: 30px;
  color: #000;
  background: #4AAD02;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;		
}
/*fleche à gauche vers la gauche*/
.price-tag.A a:before {		
  left: -22px;	
  border-color: transparent #204909 transparent #204909;
  border-width: 23px 23px 23px 0;
}
/*fleche à droite vers la droite
.price-tag.A a:after {		
  right: -22px;	
  border-color: transparent #204909 transparent #204909;
  border-width: 23px 0 23px 23px;
}
*/

/*******ORANGE *************************************************************************/
.tags.B a {
  float: left;
  position: relative;
  width: auto;
  height: 30px;
  margin-left: 20px;
  padding: 8px 12px;
  line-height: 30px;
  color: #000;
  background: #FDA92D;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;		
}
/* Flèche à gauche */
.price-tag.B a:before {		
  left: -22px;	
  border-color: transparent #503b00 transparent #503b00;
  border-width: 23px 23px 23px 0;
}

/******* BLEU *************************************************************************/
.tags.C a {
  float: left;
  position: relative;
  width: auto;
  height: 30px;
  margin-left: 20px;
  padding: 8px 12px;
  line-height: 30px;
  color: #fff;
  background: #2157BB;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;		
}
/* Flèche à gauche */
.price-tag.C a:before {		
  left: -22px;	
  border-color: transparent #090C48 transparent #090C48;
  border-width: 23px 23px 23px 0;
}

/******* ROUGE *************************************************************************/
.tags.D a {
  float: left;
  position: relative;
  width: auto;
  height: 30px;
  margin-left: 20px;
  padding: 8px 12px;
  line-height: 30px;
  color: #fff;
  background: #DA0D0C;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;		
}
/* Flèche à gauche */
.price-tag.D a:before {		
  left: -22px;	
  border-color: transparent #480909 transparent #480909;
  border-width: 23px 23px 23px 0;
}

/******* VIOLET *************************************************************************/
.tags.Z a {
  float: left;
  position: relative;
  width: auto;
  height: 30px;
  margin-left: 20px;
  padding: 8px 12px;
  line-height: 30px;
  color: #fff;
  background: #710390;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;		
}
/* Flèche à gauche */
.price-tag.Z a:before {		
  left: -22px;	
  border-color: transparent #2F0153 transparent #2F0153;
  border-width: 23px 23px 23px 0;
}

/*PARTIE COMMUNE **********************************************************************/
/*fleche à gauche vers la gauche*/
.tags a:before {
  content: "";
  position: absolute;
  top: 0;		
  width: 0;
  height: 0;		
  border-style: solid;		
}
/*fleche à droite vers la droite
.tags a:after {
  content: "";
  position: absolute;
  top: 0;		
  width: 0;
  height: 0;		
  border-style: solid;		
}
*/
.tags a:hover {
  cursor: pointer;
}	

/* Add rounded corners to right end of the anchor tag */
.price-tag a {		
  -moz-border-radius-bottomright: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  -webkit-border-top-right-radius: 8px;
  border-top-right-radius: 8px;
  
  -moz-border-radius-bottomleft: 8px;
  -webkit-border-bottom-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -webkit-border-top-left-radius: 8px;
  border-top-left-radius: 8px;  
}

/*====================================================================================*
======= badge des libellés de promos                                                  *
=====================================================================================*/
.badge_promo_spe {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  font-style: italic;
  /*background-color: yellow;*/
  /*top: 0;*/
  position: absolute;
  flex-direction: column;
  /*z-index: 100;*/
  /*left: 0;*/
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: 1px 2px 14px 5px #00000070;
  padding: 0.5rem 0.8rem;
  width: auto;
  
  background: linear-gradient(to right, #00583a 0%, #008b5b 30%, #008b5b 70%, #00583a 100%);  
}
.badge_promo_spe:focus {
  outline: none;
}
.badge_promo_spe label {
  margin-top: 0.1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-family: lobster, cursive;
  text-align: center;
  font-weight: bold;
  
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 15px #008b5b inset;*/
  text-transform: uppercase;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  /*background: linear-gradient(to right, #00a46c 0%, #00d78e 10%, #00d78e 90%, #00a46c 100%);**/
}
.badge_promo_spe label#first-title {
  font-size: 1rem;
}
.badge_promo_spe label#second-title {
  font-size: 0.8rem;
}
.badge_promo_spe .fa-mobile-phone {
  color: #fff;
  font-size: 2.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  border: 2px dotted #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0.5rem 0;
}
.badge_promo_spe .close-download-app {
  color: #fff;
  margin-top: 0.5rem;
  font-size: 0.7rem;
}

.bounce {
  animation: bounce 0.5s;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 3px, 0);
  }
}
@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 3px, 0);
    transform: translate3d(0, 3px, 0);
  }
}

/*====================================================================================*
======= Stylage du libellé du standing au dessus de l'image de fond de td             *
=====================================================================================*/

.lib_standing { 
  font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  word-break: keep-all;
  word-wrap: break-word;
  margin-top: 1.5em;
  display: inline-block;
  color: navy;
}
.lib_standing.C, .lib_standing.D, .lib_standing.Z { color: #FFF; }

/*====================================================================================*
======= Stylage de l'intitulé de l'hébergement avec effet 3d                          *
=====================================================================================*/
.nom_heb{ 
  font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 20px;
  
  text-align: left;
  text-shadow: 4px 4px 2px #000;
  color: #fff;
}

/*====================================================================================*
======= Stylage des breadcrumbs pour les étapes de résa PORTAIL                       *
=====================================================================================*/
.breadcrumb {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
  /*font-family: 'Merriweather Sans';*/
}

.breadcrumb a {
	text-decoration: none;
  vertical-align: text-top;
	outline: none;
	display: block;
	float: left;
	font-size: 14px;
	line-height: 38px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
  margin-top: -4px;
	padding: 0 10px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
  font-weight: normal;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before { left: 14px; }
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover styles*/
.breadcrumb a:hover{ cursor: default; }
.breadcrumb a:hover:after { cursor: default; }

/*hover/active styles*/
.breadcrumb a.active{ background: #333;	background: linear-gradient(#333, #000); }
.breadcrumb a.active:after { background: #333; background: linear-gradient(135deg, #333, #000); }

/*visité*/
.breadcrumb a.fait{ color: #ccc; }

/*label*/
.breadcrumb a.ets_vr{ font-weight: bold !important; }


/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:not(.ets_vr):before {
	/*content: counter(flag);
	counter-increment: flag;*/
  content: "";
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 34px;
  margin: 10px 0;
	background: #444;
	background: linear-gradient(#ddd, #222);
	/*font-weight: bold;*/
}

.breadcrumb a.fait:before {
	background: #444;
	background: linear-gradient(#222, #aaa);
}
/* flat style */
.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #9EEB62;
}



































