@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

/* ##### Buttons ##### */
@media screen and (min-device-width: 175px) and (max-device-width: 600px) {
  .btn-group .button {
    background-color: #f0f0f0;
    color: #888888;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    display: inline-block;
    font-family: "Inter";
    font-size: 0.7em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 0px solid #cccc;
    border-radius: 25px;
    margin: 10px 2px;
  }
  .container-btn {
    display: block;
    padding-top: 40%;
    height: fit-content;
  }
  .vl {
    height: 30px;
    margin: auto 20px;
  }
}

.btn-group .button {
  background-color: #f0f0f0;
  color: #888888;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.7em;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 0px solid #cccc;
  border-radius: 25px;
  margin: 10px 2px;
}
.btn-group {
  display: inline-block;
}
.btn-group .button:hover {
  background-color: #cccc;
  color: white;
}
.btn-group .button:active,
.btn-group .button:focus {
  background-color: #cccc;
  color: white;
}
/* ##### Boxen ##### */
.container {
  display: flex;
  flex-wrap: wrap;
}

.container-btn {
  display: block;
  padding-top: 2vh;
  height: fit-content;
}

.btn-group .button:not(:first-child) {
  display: none;
  transform: translateX(-100%);
}

.btn-group.show-more .button:not(:first-child) {
  display: inline-block;
  transform: translateX(0%);
  transition: transform 0.5s ease-out;
}
.btn-group .button:not(:first-child) {
  display: none;
}

.btn-group .button.show {
  display: inline-block;
  transform: translateX(0%);
}
.tag {
  bottom: 15px;
  position: absolute;
}

/* ##### filtre ##### */
.show {
  display: flex;
}

.vl {
  height: 30px;
  margin: auto 20px;
}

/*top alert*/
.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}
.alert.info {
  background-color: orange;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}
