/**************************************************************
 Lawyer'it
 Copyright 2001-2021 Develop'it
 
 Version : 8.0.0
 Date    : 17/02/2021
 Fichier : css/Commande.css
**************************************************************/

/*************************** ZoneTarif ***************************/
#ZoneTarif {
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  /* medium */
  #ZoneTarif {
    width: 100%;
  }
}
/*************************** Carte_Tarif ***************************/
.Carte_Tarif {
  position: relative;
  width: 200px;
  margin-bottom: 2rem;
  background-color: rgba(254, 254, 254, 1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}

.Carte_Tarif .ZoneEntete {
  background-color: rgba(194, 73, 54, 1);
  color: rgba(254, 254, 254, 1);
  padding: 5px 10px;
  text-align: center;
}

.Carte_Tarif .ZoneEntete span {
  font-size: 0.75em;
  opacity: 0.75;
}

.Carte_Tarif:nth-child(1) .ZoneEntete {
  background-color: rgba(120, 120, 120, 1);
}

.Carte_Tarif:nth-child(2) .ZoneEntete {
  background-color: rgba(194, 73, 54, 1);
}

.Carte_Tarif:nth-child(3) .ZoneEntete {
  background-color: rgba(194, 73, 54, 1);
}

.Carte_Tarif .ZoneEntete .TypeTarif {
  font-size: 1.3em;
}

.Carte_Tarif .ZoneLicence {
  padding: 20px 10px;
}

.Carte_Tarif .Titre {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 500;
  color: rgba(194, 73, 54, 1);
}

.Carte_Tarif .Description {
  font-size: 0.8em;
}

.Carte_Tarif .Unite {
  font-size: 0.5em;
  opacity: 0.5;
  margin: 0 5px;
  vertical-align: super;
}

.Carte_Tarif .ZoneLicence .TarifLicence {
  font-size: 2em;
}

.Carte_Tarif .ZoneLicence .TarifOption {
  font-size: 1.6em;
}

.Carte_Tarif .ZoneMaintenance {
  padding: 20px 10px;
  background-color: rgba(245, 245, 245, 1);
}

.Carte_Tarif .ZoneMaintenance .TarifMaintenance {
  font-size: 1.6em;
}

.Carte_Tarif .ZoneMaintenance .TarifOption {
  font-size: 1.3em;
}

/*************************** Cadre_Prestation ***************************/
.Cadre_Prestation {
  position: relative;
  padding: 10px 15px;
  margin-bottom: 20px;
  background-color: rgba(254, 254, 254, 0.8);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.Cadre_Prestation:hover {
  background-color: rgba(254, 254, 254, 1);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.Cadre_Prestation .Icone {
  text-align: center;
}

.Cadre_Prestation .Icone img {
  height: 60px;
  width: 60px;
}

.Cadre_Prestation .Titre {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-align: left;
}

.Cadre_Prestation .Description {
  font-size: 13px;
  margin-top: 10px;
}

.Cadre_Prestation .Description p {
  margin-bottom: 5px;
}
@media only screen and (max-width: 1023px) {
  /* medium */
  .Cadre_Prestation .Titre {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
  }
}
