#trynow-cta-button {
  width: 100%;
}
/* CTA description */
#trynow-cta-description + a svg {
  display: inherit;
}

/* Toggle switch classes */
.tn-gate-toggle-switch {
  display: inline-flex;
  width: 34px;
  height: 38px;
  overflow: hidden;
  padding: 12px 0;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  z-index: 9999;
  vertical-align: middle;
}
.tn-gate-toggle-checked,
.tn-gate-toggle-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  padding: 9px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -9px;
  z-index: 10000;
  color: #fff;
  transition:
    left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.tn-gate-toggle-checked {
  transform: translateX(14px);
}
.tn-gate-toggle-input {
  user-select: none;
  cursor: inherit;
  position: absolute;
  opacity: 0;
  height: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  z-index: 10000;
}
.tn-gate-toggle-thumb {
  cursor: pointer;
  user-select: none;
  color: inherit;
  box-shadow:
    0 2px 1px -1px rgba(0, 0, 0, 0.2),
    0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 1px 3px 0 rgba(0, 0, 0, 0.12);
  background-color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.tn-gate-toggle-slider {
  height: 100%;
  width: 100%;
  border-radius: 7px;
  z-index: -1;
  transition:
    opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  opacity: 1;
}
.tn-gate-toggle-checked + .tn-gate-toggle-slider {
  background-color: #ccc;
}
.tn-gate-toggle-base + .tn-gate-toggle-slider {
  background-color: #ccc;
}
.tn-gate-toggle-tagline {
  margin-left: 8px;
  line-height: 24px;
  color: #000;
}
