/*
 * Single owner for the homepage claim CTA.
 * Do not style #defynd-claim-cta in any other stylesheet or animate it in JS.
 */
#defynd-claim-cta {
  position: relative;
  z-index: 1;
  min-width: 150px;
  height: 100%;
  padding: 0 19px 0 31px;
  border: 1px solid #071b1d;
  background: #071b1d;
  color: #fff;
  box-shadow: none;
  filter: none;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35px;
  text-shadow: none;
  text-transform: uppercase;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 10px 78%, 10px 36%);
  cursor: pointer;
  transition: background-color .18s ease;
}

#defynd-claim-cta strong {
  font: inherit;
}

#defynd-claim-cta > span {
  margin-left: 13px;
  color: currentColor;
  font-size: 15px;
}

#defynd-claim-cta:hover {
  background: #25302f;
}

html[data-theme="dark"] #defynd-claim-cta {
  border-color: #fff;
  background: #fff;
  color: #050505;
}

html[data-theme="dark"] #defynd-claim-cta:hover {
  background: #e8e8e8;
}

@media (max-width: 540px) {
  #defynd-claim-cta {
    width: auto;
    min-width: 132px;
    height: 100%;
    padding: 0 14px 0 25px;
    font-size: 10px;
  }
}
