.gumshoe .list_campaigns {
  border: 1px solid #c4c4c4;
}
.gumshoe .list_campaigns .campaign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c4c4c4;
  padding: 10px;
}
.gumshoe .list_campaigns .campaign.header {
  font-weight: 700;
  background-color: #e9e9e9;
}
.gumshoe .list_campaigns .campaign > div {
  padding: 5px;
  flex-basis: 100%;
  text-align: center;
}
.gumshoe .list_campaigns .campaign > div:not(:last-of-type) {
  border-right: 1px solid #c4c4c4;
}
.gumshoetable,
.gumshoe table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #6e6e6e;
}
.gumshoetable th,
.gumshoetable td,
.gumshoe table th,
.gumshoe table td {
  padding: 5px;
  border: 1px solid #6e6e6e;
}
.gumshoetable td,
.gumshoe table td {
  word-wrap: break-word;
  text-align: center;
  width: auto;
}
.gumshoe .campaign_btns {
  padding: 15px 0;
}
.gumshoe .campaign_btns a {
  display: inline-block;
  background-color: #2084db;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin: 0 5px;
}
.gumshoe .campaign_details {
  padding: 30px;
}
.gumshoe .embed_code .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
  gap: 30px;
}
.gumshoe .embed_code .flex .left,
.gumshoe .embed_code .flex .right {
  flex-basis: 50%;
  width: 50%;
}
.gumshoe .embed_code textarea {
  max-width: 100%;
  width: 100%;
}
.gumshoe .embed_code code {
  font-size: 12px;
  padding: 30px;
  border-radius: 3px;
  display: block;
  background-color: #2f2f2f;
  color: #fff;
}
.campaign .status {
  width: 100%;
  height: 100%;
  background-color: #e2e2e2;
  border-radius: 30px;
  position: relative;
}
.campaign .status .progress {
  background-color: #0b8e47;
  border-radius: 30px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.campaign .status .text {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: rgba(255,255,255,0.6);
  padding: 5px 10px;
  border-radius: 30px;
}
