* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Radio Canada", sans-serif;
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image: url("/img/bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wrapper {
  z-index: 2;
  width: 100%;
  padding: 4em 10px 2em;
}
.upshuns-content {
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
  padding: 3.5vw;
  box-shadow: rgba(57, 73, 76, 0.35) 0 1px 6px 0;
  background: rgb(255 255 255);
  border-radius: 5px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
  text-align: center;
}
.upshuns-content .content-top {
  padding: 1%;
  margin-top: 2vw;
}
.upshuns-content .content-title {
  font-size: 20px;
  font-weight: 700;
}
.upshuns-content .content-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
  margin: 5px 0;
  padding: 1%;
}
.upshuns-content .content-actions a {
  text-decoration: none;
  color: inherit;
}
.content-actions .action-item {
  display: block;
  background-color: #f9f9f9;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1600 - 300)));
  line-height: 1.5;
  padding: 15px;
  padding: calc(13px + (18 - 13) * ((100vw - 300px) / (1600 - 300)));
  margin: 10px 0;
  clear: both;
  box-shadow: 0 1px 1px rgba(173, 168, 168, 0.1);
  transition: 0.2s ease-in;
  border-radius: 5px;
  text-align: left;
}
.content-actions .action-item:hover {
  box-shadow: 0 15px 15px rgba(16, 81, 185, 0.15);
}
.action-item input[type="radio"] {
  float: left;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  margin-right: 6px;
  line-height: 2em;
  filter: grayscale(1);
  /* filter: hue-rotate() */
}
.content-img-wrapp {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.content-img-wrapp img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.links {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.links a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.links a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .upshuns-content .content-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
