#tshietinPriceCalculatorApp .fa-calculator {
    width: 3.3rem;
    color: #A22B26;
    margin: auto;
    display: block;
    padding-bottom: 5px;
}
#tshietinPriceCalculatorApp pre{
  background: none;
  border: none;
  font-size: 1.3rem;
}
#tshietinPriceCalculatorApp .titre-app{
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #A22B26;
  text-align: center;
  margin-bottom: 30px;
}
#tshietinPriceCalculatorApp #reintialiser {
    cursor: pointer;
    text-align: center;
    display: block;
    font-size: 0.8rem;
    color: #a12a25;
    transition: all .5s;
}
#tshietinPriceCalculatorApp #reintialiser:hover{
    text-decoration: underline;
}
#tshietinPriceCalculatorApp #obtenir-tarif {
  cursor: pointer;
  text-align: center;
  display: block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #d4a01a;
  color: white !important;
  padding: 10px 5px !important;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 1rem;
}
#tshietinPriceCalculatorApp #obtenir-tarif::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #d4a01a;
}
#tshietinPriceCalculatorApp #obtenir-tarif::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #a12a25;
  transition: all .3s;
  z-index: -1;
}
#tshietinPriceCalculatorApp #obtenir-tarif:hover::before {
    width: 100%;
}
#tshietinPriceCalculatorApp label {
  color: #A22B26;
  font-weight: 100;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}
#tshietinPriceCalculatorApp #tarif_voyage{
  font-weight: normal;
  text-align: center;
  font-size: 1rem;
  background: #EFEFEF;
  border-radius: 5px;
  padding: 15px !important;
  color: #a12a25;
}
#tshietinPriceCalculatorApp #tarif_voyage span{
  color: #a12a25;
  font-weight: 600;
  font-size: 1.5rem;
}

#tshietinPriceCalculatorApp .flex-container {
  display: flex;
}

#tshietinPriceCalculatorApp .flex-container > div {
  margin: 0 0 20px 0px;
  flex-shrink: 1;
  flex-grow: 1;
}
#tshietinPriceCalculatorApp .flex-container .depart-container {
    margin-right: 20px !important;
}
#tshietinPriceCalculatorApp select {
  display: block;
  font-size: 1rem;
  color: #131212;
  line-height: 1.4rem;
  padding: 0.7em 1.4em .6em .8em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border-radius: .5em;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
  border: 1px rgb(118, 118, 118) solid;
  background-image: none;
  font-weight: 300;
}
#tshietinPriceCalculatorApp select:focus{
    outline: none;
}
#tshietinPriceCalculatorApp .error-messages {
    color: #A22B26;
    font-weight: 600;
    background-color: #ECBEBC;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 0.8rem;
    margin-bottom: 0;
}
#tshietinPriceCalculatorApp .select-wrapper {
  position: relative;
}

#tshietinPriceCalculatorApp .select-wrapper::after {
  content: "▼";
  font-size: 0.8rem;
  top: 15px;
  right: 10px;
  position: absolute;
  pointer-events: none;
  color: black;
}
@media all and (max-width: 1024px){
	#tshietinPriceCalculatorApp .flex-container {
  		display: block;
	}
	#tshietinPriceCalculatorApp .flex-container .depart-container {
    	margin-right: 0px !important;
	}
}