/* Different font sizes */

.font-size-15 {
  font-size: 15px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-50 {
  font-size: 50px;
}
@media only screen and (max-width: 787px){
  .font-size-md-24{
    font-size: 24px;
  }
}

@media only screen and (max-width: 787px){
  .font-size-md-24{
    font-size: 24px;
  }
}

/* Different background colors */

.bg-gray {
  background-color: #eeeeee;
}

.bg-orange {
  background-color: #ff7900
}

.bg-black {
  background-color: #000000;
}

.bg-light-yellow {
  background-color: #fff6b6;
}

.bg-light-firebrick {
  background-color: #f4cfb2;
}

.bg-light-green {
  background-color: #b8ebd6;
}

.bg-pink {
  background-color: #ffe8f7;
}


/*Different text colors */

.text-orange {
  color: #ff7900;
}

.text-gray {
  color: #eeeeee;
}

.text-dark-gray {
  color: #999999;
}
.text-black{
  color: black;
}

/*Different border-radius sizes */

.br-4 {
  border-radius: 4px;
}


/*Different line heights for paragraphs*/

.lh-1 {
  line-height: 1.25;
}


/*Borders*/

.bordered {
  border: 1px solid;
}

.not-bordered {
  border: none;
}

.border-gray {
  border-color: #eeeeee
}

.border-dark-gray {
  border-color: #979797;
}

.br-left-none {
  border-left: none;
}

.br-right-none {
  border-right: none;
}

.br-top-none {
  border-top: none;
}

.br-bottom-none {
  border-bottom: none;
}

.border-thick-2 {
  border-width: 2px !important;
}

.br-bottom-only {
  border-top: none;
  border-left: none;
  border-right: none;
}


/*Pack colors*/

.Vert {
  background-color: #00e326;
}

.Jaune {
  background-color: #f6e000
}

.Rouge {
  background-color: #ce2900;
}
