.button {
  width: fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 19px;
  box-sizing: border-box;
  cursor: pointer;
  img {
    width: 22px;
    height: 22px;
    display: inline-block;
  }
}

.button.greenButton,
.button.redButton,
.button.greyButton {
  border-radius: 4px;
  /*opacity: 0.5; */

  width: 23%;
  height: 100%;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.button.greyButton {
  background: #626b7e;
  color: white;
}
.button.darkBlueButton {
  background: #0d172d;
  color: white;
}
.button.darkBlueBorderButton {
  border: 3px solid #0d172d;
  background: #ffffff;
}
.button.linkApparence {
  background: transparent;
  color: white;
  outline: 0;
  border: 0;
  padding: 0;
  text-decoration: underline;
}
.button.redButton {
  background: #a93838;
  color: white;
}
.button.greenButton {
  background: #38a93f;
  color: white;
}
.button.blueButton{

    background: #1a313f;
    border: 1px solid #45556c;
    border-radius: 23px;
    color:#0d172d
}
.button.whiteButton {
  text-decoration: none;
  color: black;
  border-radius: 11.225px;
  background: #fff;
  background: color(display-p3 1 1 1);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}
.button.whiteButton:hover {
  background: color(display-p3 0.91 0.9 0.9);
}
.button.withoutborder {
  color: black;
}
.button.greyBorderButton {
  border-radius: 10px;
  border: 0.8px solid #e0e8f1;
  background: #fff;
  color: black;
}

.button.blackButton {
  background: #0d172d;
  color: white;
  border-radius: 4px;
}
.button.dark-grey {
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 7px;
  border: 0;
  background: #0f172b78;
  color: white;
}

.button.green {
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 7px;
  border: 0;
  background: #71bc60;
  color: white;
}
