.online-available {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-radius: 5px;
  border: solid 2px rgba(177, 0, 21, 0.2);
  border: solid 1px #ccc;
}

.container-box {
  container-type: inline-size;
}

@container (max-width: 400px) {
  .online-available {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    align-items: flex-start;
  }
  .online-available a {
    width: 100%;
  }
}
.btn-link--red--small {
  width: 140px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  height: auto;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 4px;
}
.btn-link--red--small::after {
  position: static;
  top: auto;
  right: auto;
}

a.link-orange, a.link-orange:hover {
  color: #f2800e;
  cursor: pointer;
}

span.online {
  font-weight: bold;
  color: #333;
}

h3 span {
  display: inline-block;
}

.btn-link-rfitchannel {
  --height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px;
  color: #b10015;
  background-color: white;
  height: var(--height);
  line-height: var(--height);
  border-radius: calc(var(--height) / 2);
  font-weight: bold;
  font-size: 15px;
  margin-inline: auto;
  border: solid 2px white;
  transition: background-color 0.5s;
}
.btn-link-rfitchannel:after {
  content: "\f054";
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "FontAwesome";
}
.btn-link-rfitchannel:hover {
  background-color: #b10015;
  color: white;
  border: solid 2px white;
}

/*# sourceMappingURL=update.css.map */