.dxw-subscription input[type="text"] {
  width: 65%;
}

.dxw-subscription-option .fieldset {
  margin-bottom: 10px;
}

.dxw-subscription .fieldset label {
  display: inline;
  cursor: pointer;
}

.dxw-subscription label .label-hint-item {
  display: list-item;
  list-style: disc;
  font-weight: normal;
  margin-left: 20px;
  clear: both;
}

.dxw-subscription label .label-hint-item:first-child {
  margin-top: 5px;
}

.dxw-subscription label .label-hint-item:last-child {
  margin-bottom: 30px;
}

.dxw-subscription-option .subscribed-categories {
  margin: 20px auto 20px 25px;
  padding-left: 10px;
  border-left: 5px solid #aaaaaa;
}

/* add govuk button styles */
.dxw-subscription input[type="submit"] {
  /* Colour */
  background-color: #00823b;

  /* Size and shape  */
  position: relative;
  display: inline-block;
  padding: .526315em .789473em .263157em;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  /* keep some button appearance when changing colour settings in browsers */
  outline: 1px solid transparent;
  /* fixes bug in Safari that outline width on focus is not overwritten, is reset to 0 on focus in govuk_template */
  outline-offset: -1px;
  -webkit-appearance: none;
  vertical-align: top;

  /* bottom edge effect */
  -webkit-box-shadow: 0 2px 0 #003618;
  -moz-box-shadow: 0 2px 0 #003618;
  box-shadow: 0 2px 0 #003618;

  /* Text */
  font-size: 1em;
  line-height: 1.25;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  color: #fff;

  /* Interaction */
  cursor: pointer;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.dxw-subscription input[type="submit"]:visited {
  background-color: #00823b;
}

.dxw-subscription input[type="submit"]:hover,
.dxw-subscription input[type="submit"]:focus {
  background-color: #006435;
}

.dxw-subscription input[type="submit"]:active {
  top: 2px;
  -webkit-box-shadow: 0 0 0 #00823b;
  -moz-box-shadow: 0 0 0 #00823b;
  box-shadow: 0 0 0 #00823b;
}

/* making the click target bigger than the button
  (and fill the space made when the button moves) */
.dxw-subscription input[type="submit"]:before {
  content: "";
  height: 110%;
  width: 100%;
  display: block;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.dxw-subscription input[type="submit"]:active:before {
  top: -10%;
  height: 120%;
}

.ie-6 .dxw-subscription input[type="submit"]:active:before {
  top: auto;
  height: 100%;
}

.dxw-subscription-form {
  margin-bottom: 30px;
}