@charset "UTF-8";/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.multiselect {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  border: var(--ms-border-width, 1px) solid var(--ms-border-color, #D1D5DB);
  border-radius: var(--ms-radius, 4px);
  background: var(--ms-bg, #FFFFFF);
  font-size: var(--ms-font-size, 1rem);
  min-height: calc(2 * var(--ms-border-width, 1px) + var(--ms-font-size, 1rem) * var(--ms-line-height, 1.375) + 2 * var(--ms-py, 0.5rem));
}
.multiselect.is-open {
  border-radius: var(--ms-radius, 4px) var(--ms-radius, 4px) 0 0;
}
.multiselect.is-open-top {
  border-radius: 0 0 var(--ms-radius, 4px) var(--ms-radius, 4px);
}
.multiselect.is-disabled {
  cursor: default;
  background: var(--ms-bg-disabled, #F3F4F6);
}
.multiselect.is-active {
  box-shadow: 0 0 0 var(--ms-ring-width, 3px) var(--ms-ring-color, rgba(16, 185, 129, 0.1882352941));
}

.multiselect-multiple-label,
.multiselect-single-label,
.multiselect-placeholder {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background: transparent;
  line-height: var(--ms-line-height, 1.375);
  padding-left: var(--ms-px, 0.875rem);
  padding-right: calc(1.25rem + var(--ms-px, 0.875rem) * 3);
  box-sizing: border-box;
  max-width: 100%;
}

.multiselect-placeholder {
  color: var(--ms-placeholder-color, #9CA3AF);
}

.multiselect-single-label-text {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}

.multiselect-search {
  width: 100%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  outline: none;
  box-sizing: border-box;
  border: 0;
  appearance: none;
  font-size: inherit;
  font-family: inherit;
  background: var(--ms-bg, #FFFFFF);
  border-radius: var(--ms-radius, 4px);
  padding-left: var(--ms-px, 0.875rem);
}
.multiselect-search::-webkit-search-decoration, .multiselect-search::-webkit-search-cancel-button, .multiselect-search::-webkit-search-results-button, .multiselect-search::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.multiselect-tags {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-wrap: wrap;
  margin: var(--ms-tag-my, 0.25rem) 0 0;
  padding-left: var(--ms-py, 0.5rem);
  align-items: center;
}

.multiselect-tag {
  background: var(--ms-tag-bg, #10B981);
  color: var(--ms-tag-color, #FFFFFF);
  font-size: var(--ms-tag-font-size, 0.875rem);
  line-height: var(--ms-tag-line-height, 1.25rem);
  font-weight: var(--ms-tag-font-weight, 600);
  padding: var(--ms-tag-py, 0.125rem) 0 var(--ms-tag-py, 0.125rem) var(--ms-tag-px, 0.5rem);
  border-radius: var(--ms-tag-radius, 4px);
  margin-right: var(--ms-tag-mx, 0.25rem);
  margin-bottom: var(--ms-tag-my, 0.25rem);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.multiselect-tag.is-disabled {
  padding-right: var(--ms-tag-px, 0.5rem);
  background: var(--ms-tag-bg-disabled, #9CA3AF);
  color: var(--ms-tag-color-disabled, #FFFFFF);
}

.multiselect-tag-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ms-tag-remove-py, 0.25rem) var(--ms-tag-remove-px, 0.25rem);
  margin: var(--ms-tag-remove-my, 0rem) var(--ms-tag-remove-mx, 0.125rem);
  border-radius: var(--ms-tag-remove-radius, 4px);
}
.multiselect-tag-remove:hover {
  background: rgba(0, 0, 0, 0.062745098);
}

.multiselect-tag-remove-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  opacity: 0.8;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
}

.multiselect-tags-search-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 var(--ms-tag-mx, 4px) var(--ms-tag-my, 4px);
  flex-grow: 1;
  flex-shrink: 1;
  height: 100%;
}

.multiselect-tags-search-copy {
  visibility: hidden;
  white-space: pre-wrap;
  display: inline-block;
  height: 1px;
  width: 100%;
}

.multiselect-tags-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  appearance: none;
  outline: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
  appearance: none;
}
.multiselect-tags-search::-webkit-search-decoration, .multiselect-tags-search::-webkit-search-cancel-button, .multiselect-tags-search::-webkit-search-results-button, .multiselect-tags-search::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.multiselect-spinner {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M456.433 371.72l-27.79-16.045c-7.192-4.152-10.052-13.136-6.487-20.636 25.82-54.328 23.566-118.602-6.768-171.03-30.265-52.529-84.802-86.621-144.76-91.424C262.35 71.922 256 64.953 256 56.649V24.56c0-9.31 7.916-16.609 17.204-15.96 81.795 5.717 156.412 51.902 197.611 123.408 41.301 71.385 43.99 159.096 8.042 232.792-4.082 8.369-14.361 11.575-22.424 6.92z'%3E%3C/path%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M456.433 371.72l-27.79-16.045c-7.192-4.152-10.052-13.136-6.487-20.636 25.82-54.328 23.566-118.602-6.768-171.03-30.265-52.529-84.802-86.621-144.76-91.424C262.35 71.922 256 64.953 256 56.649V24.56c0-9.31 7.916-16.609 17.204-15.96 81.795 5.717 156.412 51.902 197.611 123.408 41.301 71.385 43.99 159.096 8.042 232.792-4.082 8.369-14.361 11.575-22.424 6.92z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--ms-spinner-color, #10B981);
  width: 1rem;
  height: 1rem;
  z-index: 10;
  margin: 0 var(--ms-px, 0.875rem) 0 0;
  animation: multiselect-spin 1s linear infinite;
  flex-shrink: 0;
  flex-grow: 0;
}

.multiselect-clear {
  padding: 0 var(--ms-px, 0.875rem) 0 0px;
  position: relative;
  z-index: 10;
  opacity: 1;
  transition: 0.3s;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
}
.multiselect-clear:hover .multiselect-clear-icon {
  background-color: var(--ms-clear-color-hover, #000000);
}

.multiselect-clear-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--ms-clear-color, #999999);
  width: 0.625rem;
  height: 1.125rem;
  display: inline-block;
  transition: 0.3s;
}

.multiselect-caret {
  transform: rotate(0deg);
  transition: 0.3s transform;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--ms-caret-color, #999999);
  width: 0.625rem;
  height: 1.125rem;
  margin: 0 var(--ms-px, 0.875rem) 0 0;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  flex-grow: 0;
  pointer-events: none;
}
.multiselect-caret.is-open {
  transform: rotate(180deg);
  pointer-events: auto;
}

.multiselect-dropdown {
  position: absolute;
  left: calc(var(--ms-border-width, 1px) * -1);
  right: calc(var(--ms-border-width, 1px) * -1);
  bottom: 0;
  transform: translateY(100%);
  border: var(--ms-dropdown-border-width, 1px) solid var(--ms-dropdown-border-color, #D1D5DB);
  margin-top: calc(var(--ms-border-width, 1px) * -1);
  max-height: 15rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  background: var(--ms-dropdown-bg, #FFFFFF);
  display: flex;
  flex-direction: column;
  border-radius: 0 0 var(--ms-dropdown-radius, 4px) var(--ms-dropdown-radius, 4px);
  outline: none;
}
.multiselect-dropdown.is-top {
  transform: translateY(-100%);
  top: var(--ms-border-width, 1px);
  bottom: auto;
  flex-direction: column-reverse;
  border-radius: var(--ms-dropdown-radius, 4px) var(--ms-dropdown-radius, 4px) 0 0;
}
.multiselect-dropdown.is-hidden {
  display: none;
}

.multiselect-options {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  max-height: var(--ms-max-height, 10rem);
}
.multiselect-options.is-top {
  flex-direction: column-reverse;
}

.multiselect-group {
  padding: 0;
  margin: 0;
}

.multiselect-group-label {
  padding: var(--ms-group-label-py, 0.3rem) var(--ms-group-label-px, 0.75rem);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--ms-group-label-bg, #E5E7EB);
  color: var(--ms-group-label-color, #374151);
  cursor: default;
  line-height: var(--ms-group-label-line-height, 1.375);
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.multiselect-group-label.is-pointable {
  cursor: pointer;
}
.multiselect-group-label.is-pointed {
  background: var(--ms-group-label-bg-pointed, #D1D5DB);
  color: var(--ms-group-label-color-pointed, #374151);
}
.multiselect-group-label.is-selected {
  background: var(--ms-group-label-bg-selected, #059669);
  color: var(--ms-group-label-color-selected, #FFFFFF);
}
.multiselect-group-label.is-disabled {
  background: var(--ms-group-label-bg-disabled, #F3F4F6);
  color: var(--ms-group-label-color-disabled, #D1D5DB);
  cursor: not-allowed;
}
.multiselect-group-label.is-selected.is-pointed {
  background: var(--ms-group-label-bg-selected-pointed, #0c9e70);
  color: var(--ms-group-label-color-selected-pointed, #FFFFFF);
}
.multiselect-group-label.is-selected.is-disabled {
  background: var(--ms-group-label-bg-selected-disabled, #75cfb1);
  color: var(--ms-group-label-color-selected-disabled, #D1FAE5);
}

.multiselect-group-options {
  padding: 0;
  margin: 0;
}

.multiselect-option {
  padding: var(--ms-option-py, 0.5rem) var(--ms-option-px, 0.75rem);
  font-size: var(--ms-option-font-size, 1rem);
  line-height: var(--ms-option-line-height, 1.375);
  cursor: pointer;
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.multiselect-option.is-pointed {
  background: var(--ms-option-bg-pointed, #F3F4F6);
  color: var(--ms-option-color-pointed, #1F2937);
}
.multiselect-option.is-selected {
  background: var(--ms-option-bg-selected, #10B981);
  color: var(--ms-option-color-selected, #FFFFFF);
}
.multiselect-option.is-disabled {
  background: var(--ms-option-bg-disabled, #FFFFFF);
  color: var(--ms-option-color-disabled, #D1D5DB);
  cursor: not-allowed;
}
.multiselect-option.is-selected.is-pointed {
  background: var(--ms-option-bg-selected-pointed, #26c08e);
  color: var(--ms-option-color-selected-pointed, #FFFFFF);
}
.multiselect-option.is-selected.is-disabled {
  background: var(--ms-option-bg-selected-disabled, #87dcc0);
  color: var(--ms-option-color-selected-disabled, #D1FAE5);
}

.multiselect-no-options,
.multiselect-no-results {
  padding: var(--ms-option-py, 0.5rem) var(--ms-option-px, 0.75rem);
  color: var(--ms-empty-color, #4B5563);
}

.multiselect-fake-input {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  border: 0;
  padding: 0;
  font-size: 0;
  outline: none;
}
.multiselect-fake-input:active, .multiselect-fake-input:focus {
  outline: none;
}

.multiselect-spacer {
  display: none;
}

@keyframes multiselect-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}.slider-target,
.slider-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.slider-target {
  position: relative;
}

.slider-base,
.slider-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.slider-connects {
  overflow: hidden;
  z-index: 0;
}

.slider-connect,
.slider-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.slider-txt-dir-rtl.slider-horizontal .slider-origin {
  left: 0;
  right: auto;
}

.slider-vertical .slider-origin {
  top: -100%;
  width: 0;
}

.slider-horizontal .slider-origin {
  height: 0;
}

.slider-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.slider-touch-area {
  height: 100%;
  width: 100%;
}

.slider-state-tap .slider-connect,
.slider-state-tap .slider-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.slider-state-drag * {
  cursor: inherit !important;
}

.slider-tooltip-focus .slider-tooltip,
.slider-tooltip-drag .slider-tooltip {
  display: none !important;
}

.slider-tooltip-focus.slider-focused .slider-tooltip:not(.slider-tooltip-hidden),
.slider-tooltip-drag.slider-state-drag .slider-tooltip:not(.slider-tooltip-hidden),
.slider-tooltip-drag .slider-active .slider-tooltip {
  display: block !important;
}

.slider-horizontal {
  height: var(--slider-height, 6px);
}

.slider-horizontal .slider-handle {
  width: var(--slider-handle-width, 16px);
  height: var(--slider-handle-height, 16px);
  top: calc(((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + 1px) * -1);
  right: calc(var(--slider-handle-width, 16px) / 2 * -1);
}

.slider-vertical {
  width: var(--slider-height, 6px);
  height: var(--slider-vertical-height, 300px);
}

.slider-vertical .slider-handle {
  width: var(--slider-handle-height, 16px);
  height: var(--slider-handle-width, 16px);
  right: calc(((var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + 1px) * -1);
  bottom: calc(var(--slider-handle-width, 16px) / 2 * -1);
}

.slider-txt-dir-rtl.slider-horizontal .slider-handle {
  left: calc(var(--slider-handle-width, 16px) / 2 * -1);
  right: auto;
}

.slider-base {
  background-color: var(--slider-bg, #D1D5DB);
  border-radius: var(--slider-radius, 9999px);
}

.slider-connects {
  border-radius: var(--slider-radius, 9999px);
}

.slider-connect {
  background: var(--slider-connect-bg, #10B981);
  cursor: pointer;
}

.slider-draggable {
  cursor: ew-resize;
}

.slider-vertical .slider-draggable {
  cursor: ns-resize;
}

.slider-handle {
  width: var(--slider-handle-width, 16px);
  height: var(--slider-handle-height, 16px);
  border-radius: var(--slider-handle-radius, 9999px);
  background: var(--slider-handle-bg, #fff);
  border: var(--slider-handle-border, 0);
  box-shadow: var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));
  cursor: grab;
}
.slider-handle:focus {
  outline: none;
  box-shadow: 0 0 0 var(--slider-handle-ring-width, 3px) var(--slider-handle-ring-color, rgba(16, 185, 129, 0.1882352941)), var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));
}

.slider-active {
  box-shadow: var(--slider-handle-shadow-active, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.42));
  cursor: grabbing;
}

[disabled] .slider-connect {
  background: var(--slider-connect-bg-disabled, #9CA3AF);
}

[disabled].slider-target,
[disabled].slider-handle,
[disabled] .slider-handle {
  cursor: not-allowed;
}

[disabled] .slider-tooltip {
  background: var(--slider-tooltip-bg-disabled, #9CA3AF);
  border-color: var(--slider-tooltip-bg-disabled, #9CA3AF);
}

.slider-tooltip {
  position: absolute;
  display: block;
  font-size: var(--slider-tooltip-font-size, 0.875rem);
  line-height: var(--slider-tooltip-line-height, 1.25rem);
  font-weight: var(--slider-tooltip-font-weight, 600);
  white-space: nowrap;
  padding: var(--slider-tooltip-py, 2px) var(--slider-tooltip-px, 6px);
  min-width: var(--slider-tooltip-min-width, 20px);
  text-align: center;
  color: var(--slider-tooltip-color, #fff);
  border-radius: var(--slider-tooltip-radius, 5px);
  border: 1px solid var(--slider-tooltip-bg, #10B981);
  background: var(--slider-tooltip-bg, #10B981);
}

.slider-horizontal .slider-tooltip-top {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-horizontal .slider-tooltip-top:before {
  content: "";
  position: absolute;
  bottom: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  left: 50%;
  width: 0;
  height: 0;
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-top-color: inherit;
  transform: translate(-50%);
}

.slider-horizontal .slider-tooltip-bottom {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  top: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-horizontal .slider-tooltip-bottom:before {
  content: "";
  position: absolute;
  top: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  left: 50%;
  width: 0;
  height: 0;
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-bottom-color: inherit;
  transform: translate(-50%);
}

.slider-vertical .slider-tooltip-left {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-vertical .slider-tooltip-left:before {
  content: "";
  position: absolute;
  right: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  top: 50%;
  width: 0;
  height: 0;
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-left-color: inherit;
  transform: translateY(-50%);
}

.slider-vertical .slider-tooltip-right {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  left: calc(var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) + var(--slider-tooltip-distance, 3px));
}
.slider-vertical .slider-tooltip-right:before {
  content: "";
  position: absolute;
  left: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  top: 50%;
  width: 0;
  height: 0;
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-right-color: inherit;
  transform: translateY(-50%);
}

.slider-horizontal .slider-origin > .slider-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
}

.slider-horizontal .slider-origin > .slider-tooltip-top {
  bottom: calc(var(--slider-tooltip-arrow-size, 5px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + var(--slider-tooltip-distance, 3px) + 1px);
}

.slider-horizontal .slider-origin > .slider-tooltip-bottom {
  top: calc(var(--slider-tooltip-arrow-size, 5px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + var(--slider-tooltip-distance, 3px) + var(--slider-height, 6px) - 1px);
}

.slider-vertical .slider-origin > .slider-tooltip {
  transform: translate(0, calc((var(--slider-tooltip-line-height, 1.25rem) - var(--slider-tooltip-py, 2px)) * -1 + 1px));
  top: auto;
}

.slider-vertical .slider-origin > .slider-tooltip-left {
  right: calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + var(--slider-tooltip-distance, 3px) - 1px);
}

.slider-vertical .slider-origin > .slider-tooltip-right {
  left: calc(var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) + (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 + var(--slider-tooltip-distance, 3px) - var(--slider-height, 6px) + 1px);
}[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrolling .simplebar-scrollbar:before,
.simplebar-hover .simplebar-scrollbar:before,
.simplebar-mouse-entered .simplebar-scrollbar:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}

/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */
@-webkit-keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@-webkit-keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@-webkit-keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@-webkit-keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@-webkit-keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}@keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}.notyf{position:fixed;top:0;left:0;height:100%;width:100%;color:#fff;z-index:9999;display:flex;flex-direction:column;align-items:flex-end;justify-content:flex-end;pointer-events:none;box-sizing:border-box;padding:20px}.notyf__icon--error,.notyf__icon--success{height:21px;width:21px;background:#fff;border-radius:50%;display:block;margin:0 auto;position:relative}.notyf__icon--error:after,.notyf__icon--error:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px;left:9px;height:12px;top:5px}.notyf__icon--error:after{transform:rotate(-45deg)}.notyf__icon--error:before{transform:rotate(45deg)}.notyf__icon--success:after,.notyf__icon--success:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px}.notyf__icon--success:after{height:6px;transform:rotate(-45deg);top:9px;left:6px}.notyf__icon--success:before{height:11px;transform:rotate(45deg);top:5px;left:10px}.notyf__toast{display:block;overflow:hidden;pointer-events:auto;-webkit-animation:notyf-fadeinup .3s ease-in forwards;animation:notyf-fadeinup .3s ease-in forwards;box-shadow:0 3px 7px 0 rgba(0,0,0,.25);position:relative;padding:0 15px;border-radius:2px;max-width:300px;transform:translateY(25%);box-sizing:border-box;flex-shrink:0}.notyf__toast--disappear{transform:translateY(0);-webkit-animation:notyf-fadeoutdown .3s forwards;animation:notyf-fadeoutdown .3s forwards;-webkit-animation-delay:.25s;animation-delay:.25s}.notyf__toast--disappear .notyf__icon,.notyf__toast--disappear .notyf__message{-webkit-animation:notyf-fadeoutdown .3s forwards;animation:notyf-fadeoutdown .3s forwards;opacity:1;transform:translateY(0)}.notyf__toast--disappear .notyf__dismiss{-webkit-animation:notyf-fadeoutright .3s forwards;animation:notyf-fadeoutright .3s forwards;opacity:1;transform:translateX(0)}.notyf__toast--disappear .notyf__message{-webkit-animation-delay:.05s;animation-delay:.05s}.notyf__toast--upper{margin-bottom:20px}.notyf__toast--lower{margin-top:20px}.notyf__toast--dismissible .notyf__wrapper{padding-right:30px}.notyf__ripple{height:400px;width:400px;position:absolute;transform-origin:bottom right;right:0;top:0;border-radius:50%;transform:scale(0) translateY(-51%) translateX(13%);z-index:5;-webkit-animation:ripple .4s ease-out forwards;animation:ripple .4s ease-out forwards}.notyf__wrapper{display:flex;align-items:center;padding-top:17px;padding-bottom:17px;padding-right:15px;border-radius:3px;position:relative;z-index:10}.notyf__icon{width:22px;text-align:center;font-size:1.3em;opacity:0;-webkit-animation:notyf-fadeinup .3s forwards;animation:notyf-fadeinup .3s forwards;-webkit-animation-delay:.3s;animation-delay:.3s;margin-right:13px}.notyf__dismiss{position:absolute;top:0;right:0;height:100%;width:26px;margin-right:-15px;-webkit-animation:notyf-fadeinleft .3s forwards;animation:notyf-fadeinleft .3s forwards;-webkit-animation-delay:.35s;animation-delay:.35s;opacity:0}.notyf__dismiss-btn{background-color:rgba(0,0,0,.25);border:none;cursor:pointer;transition:opacity .2s ease,background-color .2s ease;outline:none;opacity:.35;height:100%;width:100%}.notyf__dismiss-btn:after,.notyf__dismiss-btn:before{content:"";background:#fff;height:12px;width:2px;border-radius:3px;position:absolute;left:calc(50% - 1px);top:calc(50% - 5px)}.notyf__dismiss-btn:after{transform:rotate(-45deg)}.notyf__dismiss-btn:before{transform:rotate(45deg)}.notyf__dismiss-btn:hover{opacity:.7;background-color:rgba(0,0,0,.15)}.notyf__dismiss-btn:active{opacity:.8}.notyf__message{vertical-align:middle;position:relative;opacity:0;-webkit-animation:notyf-fadeinup .3s forwards;animation:notyf-fadeinup .3s forwards;-webkit-animation-delay:.25s;animation-delay:.25s;line-height:1.5em}@media only screen and (max-width:480px){.notyf{padding:0}.notyf__ripple{height:600px;width:600px;-webkit-animation-duration:.5s;animation-duration:.5s}.notyf__toast{max-width:none;border-radius:0;box-shadow:0 -2px 7px 0 rgba(0,0,0,.13);width:100%}.notyf__dismiss{width:56px}}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.tippy-box[data-placement^=top]>.tippy-svg-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-svg-arrow:after,.tippy-box[data-placement^=top]>.tippy-svg-arrow>svg{top:16px;transform:rotate(180deg)}.tippy-box[data-placement^=bottom]>.tippy-svg-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-svg-arrow>svg{bottom:16px}.tippy-box[data-placement^=left]>.tippy-svg-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-svg-arrow:after,.tippy-box[data-placement^=left]>.tippy-svg-arrow>svg{transform:rotate(90deg);top:calc(50% - 3px);left:11px}.tippy-box[data-placement^=right]>.tippy-svg-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-svg-arrow:after,.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg{transform:rotate(-90deg);top:calc(50% - 3px);right:11px}.tippy-svg-arrow{width:16px;height:16px;fill:#333;text-align:initial}.tippy-svg-arrow,.tippy-svg-arrow>svg{position:absolute}.tippy-box{border:1px transparent}.tippy-box[data-placement^=top]>.tippy-arrow:after{border-top-color:inherit;border-width:8px 8px 0;bottom:-8px;left:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:inherit;border-width:0 8px 8px;top:-8px;left:0}.tippy-box[data-placement^=left]>.tippy-arrow:after{border-left-color:inherit;border-width:8px 0 8px 8px;right:-8px;top:0}.tippy-box[data-placement^=right]>.tippy-arrow:after{border-width:8px 8px 8px 0;left:-8px;top:0;border-right-color:inherit}.tippy-box[data-placement^=top]>.tippy-svg-arrow>svg:first-child:not(:last-child){top:17px}.tippy-box[data-placement^=bottom]>.tippy-svg-arrow>svg:first-child:not(:last-child){bottom:17px}.tippy-box[data-placement^=left]>.tippy-svg-arrow>svg:first-child:not(:last-child){left:12px}.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg:first-child:not(:last-child){right:12px}.tippy-arrow{border-color:inherit}.tippy-arrow:after{content:"";z-index:-1;position:absolute;border-color:transparent;border-style:solid}.tippy-box[data-placement^=top]>.tippy-backdrop{transform-origin:0 25%;border-radius:40% 40% 0 0}.tippy-box[data-placement^=top]>.tippy-backdrop[data-state=visible]{transform:scale(1) translate(-50%,-55%)}.tippy-box[data-placement^=top]>.tippy-backdrop[data-state=hidden]{transform:scale(.2) translate(-50%,-45%)}.tippy-box[data-placement^=bottom]>.tippy-backdrop{transform-origin:0 -50%;border-radius:0 0 30% 30%}.tippy-box[data-placement^=bottom]>.tippy-backdrop[data-state=visible]{transform:scale(1) translate(-50%,-45%)}.tippy-box[data-placement^=bottom]>.tippy-backdrop[data-state=hidden]{transform:scale(.2) translate(-50%)}.tippy-box[data-placement^=left]>.tippy-backdrop{transform-origin:50% 0;border-radius:50% 0 0 50%}.tippy-box[data-placement^=left]>.tippy-backdrop[data-state=visible]{transform:scale(1) translate(-50%,-50%)}.tippy-box[data-placement^=left]>.tippy-backdrop[data-state=hidden]{transform:scale(.2) translate(-75%,-50%)}.tippy-box[data-placement^=right]>.tippy-backdrop{transform-origin:-50% 0;border-radius:0 50% 50% 0}.tippy-box[data-placement^=right]>.tippy-backdrop[data-state=visible]{transform:scale(1) translate(-50%,-50%)}.tippy-box[data-placement^=right]>.tippy-backdrop[data-state=hidden]{transform:scale(.2) translate(-25%,-50%)}.tippy-box[data-animatefill]{background-color:transparent!important}.tippy-backdrop{position:absolute;background-color:#333;border-radius:50%;width:calc(110% + 32px);left:50%;top:50%;z-index:-1;transition:all cubic-bezier(.46,.1,.52,.98);-webkit-backface-visibility:hidden;backface-visibility:hidden}.tippy-backdrop[data-state=hidden]{opacity:0}.tippy-backdrop:after{content:"";float:left;padding-top:100%}.tippy-backdrop+.tippy-content{transition-property:opacity;will-change:opacity}.tippy-backdrop+.tippy-content[data-state=hidden]{opacity:0}.tippy-box[data-theme~=light]{color:#26323d;box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);background-color:#fff}.tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff}.tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff}.tippy-box[data-theme~=light]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=light]>.tippy-svg-arrow{fill:#fff}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/SourceSansPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/SourceSansPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/fonts/fa-regular-400.woff2") format("woff2"), url("/assets/fonts/fa-regular-400.woff") format("woff");
  font-weight: normal;
  font-style: solid;
  font-display: fallback;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/fonts/fa-solid-900.woff2") format("woff2"), url("/assets/fonts/fa-solid-900.woff") format("woff");
  font-weight: normal;
  font-style: solid;
  font-display: fallback;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/fonts/fa-brands-400.woff2") format("woff2"), url("/assets/fonts/fa-brands-400.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
.fa, .fas, .far, .fal, .fad, .fab {
  font-family: "FontAwesome";
}
.govuk-grid-row {
  margin-right: -15px;
  margin-left: -15px;
}
.govuk-grid-row:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-grid-column-one-quarter {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 40.0625em) {
  .govuk-grid-column-one-quarter {
    width: 25%;
    float: left;
  }
}
.govuk-grid-column-one-third {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 40.0625em) {
  .govuk-grid-column-one-third {
    width: 33.3333%;
    float: left;
  }
}
.govuk-grid-column-one-half {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 40.0625em) {
  .govuk-grid-column-one-half {
    width: 50%;
    float: left;
  }
}
.govuk-grid-column-two-thirds {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 40.0625em) {
  .govuk-grid-column-two-thirds {
    width: 66.6666%;
    float: left;
  }
}
.govuk-grid-column-three-quarters {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 40.0625em) {
  .govuk-grid-column-three-quarters {
    width: 75%;
    float: left;
  }
}
.govuk-grid-column-full {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 40.0625em) {
  .govuk-grid-column-full {
    width: 100%;
    float: left;
  }
}
.govuk-grid-column-one-quarter-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}
@media (min-width: 48.0625em) {
  .govuk-grid-column-one-quarter-from-desktop {
    width: 25%;
    float: left;
  }
}
.govuk-grid-column-one-third-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}
@media (min-width: 48.0625em) {
  .govuk-grid-column-one-third-from-desktop {
    width: 33.3333%;
    float: left;
  }
}
.govuk-grid-column-one-half-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}
@media (min-width: 48.0625em) {
  .govuk-grid-column-one-half-from-desktop {
    width: 50%;
    float: left;
  }
}
.govuk-grid-column-two-thirds-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}
@media (min-width: 48.0625em) {
  .govuk-grid-column-two-thirds-from-desktop {
    width: 66.6666%;
    float: left;
  }
}
.govuk-grid-column-three-quarters-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}
@media (min-width: 48.0625em) {
  .govuk-grid-column-three-quarters-from-desktop {
    width: 75%;
    float: left;
  }
}
.govuk-grid-column-full-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}
@media (min-width: 48.0625em) {
  .govuk-grid-column-full-from-desktop {
    width: 100%;
    float: left;
  }
}
.govuk-breadcrumbs {
  margin-top: 25px;
}
@media (min-width: 40.0625em) {
  .govuk-main-wrapper {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.govuk-link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .govuk-link {
    font-family: sans-serif;
  }
}
.govuk-link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-link:link {
  color: #0065b3;
}
.govuk-link:visited {
  color: #4c2c92;
}
.govuk-link:hover {
  color: #003078;
}
.govuk-link:active {
  color: #0b0c0c;
}
.govuk-link:focus {
  color: #0b0c0c;
}
@media print {
  [href^="/"].govuk-link:after, [href^="http://"].govuk-link:after, [href^="https://"].govuk-link:after {
    content: " (" attr(href) ")";
    font-size: 90%;
    word-wrap: break-word;
  }
}
.govuk-link--muted:link, .govuk-link--muted:visited {
  color: #626a6e;
}
.govuk-link--muted:hover, .govuk-link--muted:active {
  color: #0b0c0c;
}
.govuk-link--muted:focus {
  color: #0b0c0c;
}
.govuk-link--text-colour:link, .govuk-link--text-colour:visited {
  color: #0b0c0c;
}
@media print {
  .govuk-link--text-colour:link, .govuk-link--text-colour:visited {
    color: #000000;
  }
}
.govuk-link--text-colour:hover {
  color: rgba(11, 12, 12, 0.99);
}
.govuk-link--text-colour:active, .govuk-link--text-colour:focus {
  color: #0b0c0c;
}
@media print {
  .govuk-link--text-colour:active, .govuk-link--text-colour:focus {
    color: #000000;
  }
}
.govuk-link--inverse:link, .govuk-link--inverse:visited {
  color: #ffffff;
}
.govuk-link--inverse:hover, .govuk-link--inverse:active {
  color: rgba(255, 255, 255, 0.99);
}
.govuk-link--inverse:focus {
  color: #0b0c0c;
}
.govuk-link--no-underline:not(:hover):not(:active) {
  text-decoration: none;
}
.govuk-link--no-visited-state:link {
  color: #0065b3;
}
.govuk-link--no-visited-state:visited {
  color: #0065b3;
}
.govuk-link--no-visited-state:hover {
  color: #003078;
}
.govuk-link--no-visited-state:active {
  color: #0b0c0c;
}
.govuk-link--no-visited-state:focus {
  color: #0b0c0c;
}
.govuk-list, .idsk-list {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 0;
  list-style-type: none;
}
@media print {
  .govuk-list, .idsk-list {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-list, .idsk-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-list, .idsk-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-list, .idsk-list {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-list, .idsk-list {
    margin-bottom: 20px;
  }
}
.govuk-list .govuk-list, .idsk-list .govuk-list, .govuk-list .idsk-list, .idsk-list .idsk-list {
  margin-top: 10px;
}
.govuk-list > li, .idsk-list > li {
  margin-bottom: 5px;
}
.govuk-list--bullet {
  padding-left: 20px;
  list-style-type: disc;
}
.govuk-list--number, .idsk-list--letters {
  padding-left: 20px;
  list-style-type: decimal;
}
.govuk-list--bullet > li,
.govuk-list--number > li,
.idsk-list--letters > li {
  margin-bottom: 0;
}
@media (min-width: 40.0625em) {
  .govuk-list--bullet > li,
.govuk-list--number > li,
.idsk-list--letters > li {
    margin-bottom: 5px;
  }
}
.govuk-template {
  background-color: #dee0e2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media screen {
  .govuk-template {
    overflow-y: scroll;
  }
}
.govuk-template__body {
  margin: 0;
  background-color: #ffffff;
}
.govuk-heading-xl {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  display: block;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print {
  .govuk-heading-xl {
    color: #000000;
  }
}
@media print {
  .govuk-heading-xl {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}
@media print {
  .govuk-heading-xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-xl {
    margin-bottom: 50px;
  }
}
.govuk-heading-l {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
}
@media print {
  .govuk-heading-l {
    color: #000000;
  }
}
@media print {
  .govuk-heading-l {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .govuk-heading-l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-l {
    margin-bottom: 30px;
  }
}
.govuk-heading-m {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: block;
  margin-top: 0;
  margin-bottom: 15px;
}
@media print {
  .govuk-heading-m {
    color: #000000;
  }
}
@media print {
  .govuk-heading-m {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-heading-m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-m {
    margin-bottom: 20px;
  }
}
.govuk-heading-s {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  margin-top: 0;
  margin-bottom: 15px;
}
@media print {
  .govuk-heading-s {
    color: #000000;
  }
}
@media print {
  .govuk-heading-s {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-heading-s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-heading-s {
    margin-bottom: 20px;
  }
}
.govuk-caption-xl {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: block;
  margin-bottom: 5px;
  color: #626a6e;
}
@media print {
  .govuk-caption-xl {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-caption-xl {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .govuk-caption-xl {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.govuk-caption-l {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: block;
  margin-bottom: 5px;
  color: #626a6e;
}
@media print {
  .govuk-caption-l {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-caption-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-caption-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-caption-l {
    margin-bottom: 0;
  }
}
.govuk-caption-m {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  color: #626a6e;
}
@media print {
  .govuk-caption-m {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-caption-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-caption-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-body-lead, .govuk-body-l {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-top: 0;
  margin-bottom: 20px;
}
@media print {
  .govuk-body-lead, .govuk-body-l {
    color: #000000;
  }
}
@media print {
  .govuk-body-lead, .govuk-body-l {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body-lead, .govuk-body-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-body-lead, .govuk-body-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body-lead, .govuk-body-l {
    margin-bottom: 30px;
  }
}
.govuk-body, .govuk-body-m {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 15px;
}
@media print {
  .govuk-body, .govuk-body-m {
    color: #000000;
  }
}
@media print {
  .govuk-body, .govuk-body-m {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body, .govuk-body-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-body, .govuk-body-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body, .govuk-body-m {
    margin-bottom: 20px;
  }
}
.govuk-body-s {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  margin-top: 0;
  margin-bottom: 15px;
}
@media print {
  .govuk-body-s {
    color: #000000;
  }
}
@media print {
  .govuk-body-s {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body-s {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-body-s {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body-s {
    margin-bottom: 20px;
  }
}
.govuk-body-xs {
  color: #0b0c0c;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 15px;
}
@media print {
  .govuk-body-xs {
    color: #000000;
  }
}
@media print {
  .govuk-body-xs {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body-xs {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media print {
  .govuk-body-xs {
    font-size: 12pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .govuk-body-xs {
    margin-bottom: 20px;
  }
}
.govuk-body-l + .govuk-heading-l, .govuk-body-lead + .govuk-heading-l {
  padding-top: 5px;
}
@media (min-width: 40.0625em) {
  .govuk-body-l + .govuk-heading-l, .govuk-body-lead + .govuk-heading-l {
    padding-top: 10px;
  }
}
.govuk-body-m + .govuk-heading-l, .govuk-body + .govuk-heading-l,
.govuk-body-s + .govuk-heading-l,
.govuk-list + .govuk-heading-l,
.idsk-list + .govuk-heading-l {
  padding-top: 15px;
}
@media (min-width: 40.0625em) {
  .govuk-body-m + .govuk-heading-l, .govuk-body + .govuk-heading-l,
.govuk-body-s + .govuk-heading-l,
.govuk-list + .govuk-heading-l,
.idsk-list + .govuk-heading-l {
    padding-top: 20px;
  }
}
.govuk-body-m + .govuk-heading-m, .govuk-body + .govuk-heading-m,
.govuk-body-s + .govuk-heading-m,
.govuk-list + .govuk-heading-m,
.idsk-list + .govuk-heading-m,
.govuk-body-m + .govuk-heading-s,
.govuk-body + .govuk-heading-s,
.govuk-body-s + .govuk-heading-s,
.govuk-list + .govuk-heading-s,
.idsk-list + .govuk-heading-s {
  padding-top: 5px;
}
@media (min-width: 40.0625em) {
  .govuk-body-m + .govuk-heading-m, .govuk-body + .govuk-heading-m,
.govuk-body-s + .govuk-heading-m,
.govuk-list + .govuk-heading-m,
.idsk-list + .govuk-heading-m,
.govuk-body-m + .govuk-heading-s,
.govuk-body + .govuk-heading-s,
.govuk-body-s + .govuk-heading-s,
.govuk-list + .govuk-heading-s,
.idsk-list + .govuk-heading-s {
    padding-top: 10px;
  }
}
.govuk-section-break {
  margin: 0;
  border: 0;
}
.govuk-section-break--xl {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 40.0625em) {
  .govuk-section-break--xl {
    margin-top: 50px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-section-break--xl {
    margin-bottom: 50px;
  }
}
.govuk-section-break--l {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-section-break--l {
    margin-top: 30px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-section-break--l {
    margin-bottom: 30px;
  }
}
.govuk-section-break--m {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .govuk-section-break--m {
    margin-top: 20px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-section-break--m {
    margin-bottom: 20px;
  }
}
.govuk-section-break--visible {
  border-bottom: 1px solid #bfc1c3;
}
.govuk-form-group {
  margin-bottom: 20px;
}
.govuk-form-group:after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 40.0625em) {
  .govuk-form-group {
    margin-bottom: 30px;
  }
}
.govuk-form-group .govuk-form-group:last-of-type {
  margin-bottom: 0;
}
.govuk-form-group--error {
  padding-left: 15px;
  border-left: 5px solid #d0190f;
}
.govuk-form-group--error .govuk-form-group {
  padding: 0;
  border: 0;
}
.govuk-main-wrapper {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-main-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.govuk-main-wrapper--auto-spacing:first-child,
.govuk-main-wrapper--l {
  padding-top: 30px;
}
@media (min-width: 40.0625em) {
  .govuk-main-wrapper--auto-spacing:first-child,
.govuk-main-wrapper--l {
    padding-top: 50px;
  }
}
.govuk-width-container {
  max-width: 960px;
  margin-right: 15px;
  margin-left: 15px;
}
@supports (margin: max(calc(0px))) {
  .govuk-width-container {
    margin-right: max(15px, calc(15px + env(safe-area-inset-right)));
    margin-left: max(15px, calc(15px + env(safe-area-inset-left)));
  }
}
@media (min-width: 40.0625em) {
  .govuk-width-container {
    margin-right: 30px;
    margin-left: 30px;
  }
  @supports (margin: max(calc(0px))) {
    .govuk-width-container {
      margin-right: max(30px, calc(15px + env(safe-area-inset-right)));
      margin-left: max(30px, calc(15px + env(safe-area-inset-left)));
    }
  }
}
@media (min-width: 1020px) {
  .govuk-width-container {
    margin-right: auto;
    margin-left: auto;
  }
  @supports (margin: max(calc(0px))) {
    .govuk-width-container {
      margin-right: auto;
      margin-left: auto;
    }
  }
}
.govuk-clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.govuk-visually-hidden-focusable {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.govuk-visually-hidden-focusable:active, .govuk-visually-hidden-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  white-space: inherit !important;
}
.govuk-\!-display-inline {
  display: inline !important;
}
.govuk-\!-display-inline-block {
  display: inline-block !important;
}
.govuk-\!-display-block {
  display: block !important;
}
.govuk-\!-margin-0 {
  margin: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-0 {
    margin: 0 !important;
  }
}
.govuk-\!-margin-top-0 {
  margin-top: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-0 {
    margin-top: 0 !important;
  }
}
.govuk-\!-margin-right-0 {
  margin-right: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-0 {
    margin-right: 0 !important;
  }
}
.govuk-\!-margin-bottom-0 {
  margin-bottom: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-0 {
    margin-bottom: 0 !important;
  }
}
.govuk-\!-margin-left-0 {
  margin-left: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-0 {
    margin-left: 0 !important;
  }
}
.govuk-\!-margin-1 {
  margin: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-1 {
    margin: 5px !important;
  }
}
.govuk-\!-margin-top-1 {
  margin-top: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-1 {
    margin-top: 5px !important;
  }
}
.govuk-\!-margin-right-1 {
  margin-right: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-1 {
    margin-right: 5px !important;
  }
}
.govuk-\!-margin-bottom-1 {
  margin-bottom: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-1 {
    margin-bottom: 5px !important;
  }
}
.govuk-\!-margin-left-1 {
  margin-left: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-1 {
    margin-left: 5px !important;
  }
}
.govuk-\!-margin-2 {
  margin: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-2 {
    margin: 10px !important;
  }
}
.govuk-\!-margin-top-2 {
  margin-top: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-2 {
    margin-top: 10px !important;
  }
}
.govuk-\!-margin-right-2 {
  margin-right: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-2 {
    margin-right: 10px !important;
  }
}
.govuk-\!-margin-bottom-2 {
  margin-bottom: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-2 {
    margin-bottom: 10px !important;
  }
}
.govuk-\!-margin-left-2 {
  margin-left: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-2 {
    margin-left: 10px !important;
  }
}
.govuk-\!-margin-3 {
  margin: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-3 {
    margin: 15px !important;
  }
}
.govuk-\!-margin-top-3 {
  margin-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-3 {
    margin-top: 15px !important;
  }
}
.govuk-\!-margin-right-3 {
  margin-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-3 {
    margin-right: 15px !important;
  }
}
.govuk-\!-margin-bottom-3 {
  margin-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-3 {
    margin-bottom: 15px !important;
  }
}
.govuk-\!-margin-left-3 {
  margin-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-3 {
    margin-left: 15px !important;
  }
}
.govuk-\!-margin-4 {
  margin: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-4 {
    margin: 20px !important;
  }
}
.govuk-\!-margin-top-4 {
  margin-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-4 {
    margin-top: 20px !important;
  }
}
.govuk-\!-margin-right-4 {
  margin-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-4 {
    margin-right: 20px !important;
  }
}
.govuk-\!-margin-bottom-4 {
  margin-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-4 {
    margin-bottom: 20px !important;
  }
}
.govuk-\!-margin-left-4 {
  margin-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-4 {
    margin-left: 20px !important;
  }
}
.govuk-\!-margin-5 {
  margin: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-5 {
    margin: 25px !important;
  }
}
.govuk-\!-margin-top-5 {
  margin-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-5 {
    margin-top: 25px !important;
  }
}
.govuk-\!-margin-right-5 {
  margin-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-5 {
    margin-right: 25px !important;
  }
}
.govuk-\!-margin-bottom-5 {
  margin-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-5 {
    margin-bottom: 25px !important;
  }
}
.govuk-\!-margin-left-5 {
  margin-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-5 {
    margin-left: 25px !important;
  }
}
.govuk-\!-margin-6 {
  margin: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-6 {
    margin: 30px !important;
  }
}
.govuk-\!-margin-top-6 {
  margin-top: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-6 {
    margin-top: 30px !important;
  }
}
.govuk-\!-margin-right-6 {
  margin-right: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-6 {
    margin-right: 30px !important;
  }
}
.govuk-\!-margin-bottom-6 {
  margin-bottom: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-6 {
    margin-bottom: 30px !important;
  }
}
.govuk-\!-margin-left-6 {
  margin-left: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-6 {
    margin-left: 30px !important;
  }
}
.govuk-\!-margin-7 {
  margin: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-7 {
    margin: 40px !important;
  }
}
.govuk-\!-margin-top-7 {
  margin-top: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-7 {
    margin-top: 40px !important;
  }
}
.govuk-\!-margin-right-7 {
  margin-right: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-7 {
    margin-right: 40px !important;
  }
}
.govuk-\!-margin-bottom-7 {
  margin-bottom: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-7 {
    margin-bottom: 40px !important;
  }
}
.govuk-\!-margin-left-7 {
  margin-left: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-7 {
    margin-left: 40px !important;
  }
}
.govuk-\!-margin-8 {
  margin: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-8 {
    margin: 50px !important;
  }
}
.govuk-\!-margin-top-8 {
  margin-top: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-8 {
    margin-top: 50px !important;
  }
}
.govuk-\!-margin-right-8 {
  margin-right: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-8 {
    margin-right: 50px !important;
  }
}
.govuk-\!-margin-bottom-8 {
  margin-bottom: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-8 {
    margin-bottom: 50px !important;
  }
}
.govuk-\!-margin-left-8 {
  margin-left: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-8 {
    margin-left: 50px !important;
  }
}
.govuk-\!-margin-9 {
  margin: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-9 {
    margin: 60px !important;
  }
}
.govuk-\!-margin-top-9 {
  margin-top: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-top-9 {
    margin-top: 60px !important;
  }
}
.govuk-\!-margin-right-9 {
  margin-right: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-right-9 {
    margin-right: 60px !important;
  }
}
.govuk-\!-margin-bottom-9 {
  margin-bottom: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-bottom-9 {
    margin-bottom: 60px !important;
  }
}
.govuk-\!-margin-left-9 {
  margin-left: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-margin-left-9 {
    margin-left: 60px !important;
  }
}
.govuk-\!-padding-0 {
  padding: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-0 {
    padding: 0 !important;
  }
}
.govuk-\!-padding-top-0 {
  padding-top: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-0 {
    padding-top: 0 !important;
  }
}
.govuk-\!-padding-right-0 {
  padding-right: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-0 {
    padding-right: 0 !important;
  }
}
.govuk-\!-padding-bottom-0 {
  padding-bottom: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-0 {
    padding-bottom: 0 !important;
  }
}
.govuk-\!-padding-left-0 {
  padding-left: 0 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-0 {
    padding-left: 0 !important;
  }
}
.govuk-\!-padding-1 {
  padding: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-1 {
    padding: 5px !important;
  }
}
.govuk-\!-padding-top-1 {
  padding-top: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-1 {
    padding-top: 5px !important;
  }
}
.govuk-\!-padding-right-1 {
  padding-right: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-1 {
    padding-right: 5px !important;
  }
}
.govuk-\!-padding-bottom-1 {
  padding-bottom: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-1 {
    padding-bottom: 5px !important;
  }
}
.govuk-\!-padding-left-1 {
  padding-left: 5px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-1 {
    padding-left: 5px !important;
  }
}
.govuk-\!-padding-2 {
  padding: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-2 {
    padding: 10px !important;
  }
}
.govuk-\!-padding-top-2 {
  padding-top: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-2 {
    padding-top: 10px !important;
  }
}
.govuk-\!-padding-right-2 {
  padding-right: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-2 {
    padding-right: 10px !important;
  }
}
.govuk-\!-padding-bottom-2 {
  padding-bottom: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-2 {
    padding-bottom: 10px !important;
  }
}
.govuk-\!-padding-left-2 {
  padding-left: 10px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-2 {
    padding-left: 10px !important;
  }
}
.govuk-\!-padding-3 {
  padding: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-3 {
    padding: 15px !important;
  }
}
.govuk-\!-padding-top-3 {
  padding-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-3 {
    padding-top: 15px !important;
  }
}
.govuk-\!-padding-right-3 {
  padding-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-3 {
    padding-right: 15px !important;
  }
}
.govuk-\!-padding-bottom-3 {
  padding-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-3 {
    padding-bottom: 15px !important;
  }
}
.govuk-\!-padding-left-3 {
  padding-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-3 {
    padding-left: 15px !important;
  }
}
.govuk-\!-padding-4 {
  padding: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-4 {
    padding: 20px !important;
  }
}
.govuk-\!-padding-top-4 {
  padding-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-4 {
    padding-top: 20px !important;
  }
}
.govuk-\!-padding-right-4 {
  padding-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-4 {
    padding-right: 20px !important;
  }
}
.govuk-\!-padding-bottom-4 {
  padding-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-4 {
    padding-bottom: 20px !important;
  }
}
.govuk-\!-padding-left-4 {
  padding-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-4 {
    padding-left: 20px !important;
  }
}
.govuk-\!-padding-5 {
  padding: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-5 {
    padding: 25px !important;
  }
}
.govuk-\!-padding-top-5 {
  padding-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-5 {
    padding-top: 25px !important;
  }
}
.govuk-\!-padding-right-5 {
  padding-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-5 {
    padding-right: 25px !important;
  }
}
.govuk-\!-padding-bottom-5 {
  padding-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-5 {
    padding-bottom: 25px !important;
  }
}
.govuk-\!-padding-left-5 {
  padding-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-5 {
    padding-left: 25px !important;
  }
}
.govuk-\!-padding-6 {
  padding: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-6 {
    padding: 30px !important;
  }
}
.govuk-\!-padding-top-6 {
  padding-top: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-6 {
    padding-top: 30px !important;
  }
}
.govuk-\!-padding-right-6 {
  padding-right: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-6 {
    padding-right: 30px !important;
  }
}
.govuk-\!-padding-bottom-6 {
  padding-bottom: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-6 {
    padding-bottom: 30px !important;
  }
}
.govuk-\!-padding-left-6 {
  padding-left: 20px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-6 {
    padding-left: 30px !important;
  }
}
.govuk-\!-padding-7 {
  padding: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-7 {
    padding: 40px !important;
  }
}
.govuk-\!-padding-top-7 {
  padding-top: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-7 {
    padding-top: 40px !important;
  }
}
.govuk-\!-padding-right-7 {
  padding-right: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-7 {
    padding-right: 40px !important;
  }
}
.govuk-\!-padding-bottom-7 {
  padding-bottom: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-7 {
    padding-bottom: 40px !important;
  }
}
.govuk-\!-padding-left-7 {
  padding-left: 25px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-7 {
    padding-left: 40px !important;
  }
}
.govuk-\!-padding-8 {
  padding: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-8 {
    padding: 50px !important;
  }
}
.govuk-\!-padding-top-8 {
  padding-top: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-8 {
    padding-top: 50px !important;
  }
}
.govuk-\!-padding-right-8 {
  padding-right: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-8 {
    padding-right: 50px !important;
  }
}
.govuk-\!-padding-bottom-8 {
  padding-bottom: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-8 {
    padding-bottom: 50px !important;
  }
}
.govuk-\!-padding-left-8 {
  padding-left: 30px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-8 {
    padding-left: 50px !important;
  }
}
.govuk-\!-padding-9 {
  padding: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-9 {
    padding: 60px !important;
  }
}
.govuk-\!-padding-top-9 {
  padding-top: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-top-9 {
    padding-top: 60px !important;
  }
}
.govuk-\!-padding-right-9 {
  padding-right: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-right-9 {
    padding-right: 60px !important;
  }
}
.govuk-\!-padding-bottom-9 {
  padding-bottom: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-bottom-9 {
    padding-bottom: 60px !important;
  }
}
.govuk-\!-padding-left-9 {
  padding-left: 40px !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-padding-left-9 {
    padding-left: 60px !important;
  }
}
.govuk-\!-font-size-80 {
  font-size: 53px !important;
  font-size: 3.3125rem !important;
  line-height: 1.0377358491 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-80 {
    font-size: 80px !important;
    font-size: 5rem !important;
    line-height: 1 !important;
  }
}
@media print {
  .govuk-\!-font-size-80 {
    font-size: 53pt !important;
    line-height: 1.1 !important;
  }
}
.govuk-\!-font-size-48 {
  font-size: 32px !important;
  font-size: 2rem !important;
  line-height: 1.09375 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-48 {
    font-size: 48px !important;
    font-size: 3rem !important;
    line-height: 1.0416666667 !important;
  }
}
@media print {
  .govuk-\!-font-size-48 {
    font-size: 32pt !important;
    line-height: 1.15 !important;
  }
}
.govuk-\!-font-size-36 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.0416666667 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-36 {
    font-size: 36px !important;
    font-size: 2.25rem !important;
    line-height: 1.1111111111 !important;
  }
}
@media print {
  .govuk-\!-font-size-36 {
    font-size: 24pt !important;
    line-height: 1.05 !important;
  }
}
.govuk-\!-font-size-27 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.1111111111 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-27 {
    font-size: 27px !important;
    font-size: 1.6875rem !important;
    line-height: 1.1111111111 !important;
  }
}
@media print {
  .govuk-\!-font-size-27 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
.govuk-\!-font-size-24 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.1111111111 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-24 {
    font-size: 24px !important;
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }
}
@media print {
  .govuk-\!-font-size-24 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
.govuk-\!-font-size-19 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-19 {
    font-size: 19px !important;
    font-size: 1.1875rem !important;
    line-height: 1.3157894737 !important;
  }
}
@media print {
  .govuk-\!-font-size-19 {
    font-size: 14pt !important;
    line-height: 1.15 !important;
  }
}
.govuk-\!-font-size-16 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.1428571429 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-16 {
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }
}
@media print {
  .govuk-\!-font-size-16 {
    font-size: 14pt !important;
    line-height: 1.2 !important;
  }
}
.govuk-\!-font-size-14 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.25 !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-font-size-14 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    line-height: 1.4285714286 !important;
  }
}
@media print {
  .govuk-\!-font-size-14 {
    font-size: 12pt !important;
    line-height: 1.2 !important;
  }
}
.govuk-\!-font-weight-regular {
  font-weight: 400 !important;
}
.govuk-\!-font-weight-bold {
  font-weight: 700 !important;
}
.govuk-\!-width-full {
  width: 100% !important;
}
.govuk-\!-width-three-quarters {
  width: 100% !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-width-three-quarters {
    width: 75% !important;
  }
}
.govuk-\!-width-two-thirds {
  width: 100% !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-width-two-thirds {
    width: 66.66% !important;
  }
}
.govuk-\!-width-one-half {
  width: 100% !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-width-one-half {
    width: 50% !important;
  }
}
.govuk-\!-width-one-third {
  width: 100% !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-width-one-third {
    width: 33.33% !important;
  }
}
.govuk-\!-width-one-quarter {
  width: 100% !important;
}
@media (min-width: 40.0625em) {
  .govuk-\!-width-one-quarter {
    width: 25% !important;
  }
}
.govuk-back-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  display: inline-block;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 14px;
  border-bottom: 1px solid #0b0c0c;
  text-decoration: none;
}
@media (min-width: 40.0625em) {
  .govuk-back-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-back-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .govuk-back-link {
    font-family: sans-serif;
  }
}
.govuk-back-link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-back-link:link, .govuk-back-link:visited {
  color: #0b0c0c;
}
@media print {
  .govuk-back-link:link, .govuk-back-link:visited {
    color: #000000;
  }
}
.govuk-back-link:hover {
  color: rgba(11, 12, 12, 0.99);
}
.govuk-back-link:active, .govuk-back-link:focus {
  color: #0b0c0c;
}
@media print {
  .govuk-back-link:active, .govuk-back-link:focus {
    color: #000000;
  }
}
.govuk-back-link:focus {
  border-bottom-color: transparent;
}
.govuk-back-link:before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 50%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 50%, 100% 100%, 100% 0%);
  border-width: 5px 6px 5px 0;
  border-right-color: inherit;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.govuk-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 8px 10px 7px;
  border: 2px solid transparent;
  border-radius: 0;
  color: #ffffff;
  background-color: #00703c;
  box-shadow: 0 2px 0 #002d18;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  -webkit-appearance: none;
}
@media print {
  .govuk-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1;
  }
}
@media print {
  .govuk-button {
    font-size: 14pt;
    line-height: 19px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-button {
    margin-bottom: 32px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-button {
    width: auto;
  }
}
.govuk-button:link, .govuk-button:visited, .govuk-button:active, .govuk-button:hover {
  color: #ffffff;
  text-decoration: none;
}
.govuk-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.govuk-button:hover {
  background-color: #005a30;
}
.govuk-button:active {
  top: 2px;
}
.govuk-button:focus {
  border-color: #ffdf0f;
  outline: 3px solid transparent;
  box-shadow: inset 0 0 0 1px #ffdf0f;
}
.govuk-button:focus:not(:active):not(:hover) {
  border-color: #ffdf0f;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 2px 0 #0b0c0c;
}
.govuk-button::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -4px;
  left: -2px;
  background: transparent;
}
.govuk-button:active::before {
  top: -4px;
}
.govuk-button--disabled,
.govuk-button[disabled=disabled],
.govuk-button[disabled] {
  opacity: 0.5;
}
.govuk-button--disabled:hover,
.govuk-button[disabled=disabled]:hover,
.govuk-button[disabled]:hover {
  background-color: #00703c;
  cursor: default;
}
.govuk-button--disabled:focus,
.govuk-button[disabled=disabled]:focus,
.govuk-button[disabled]:focus {
  outline: none;
}
.govuk-button--disabled:active,
.govuk-button[disabled=disabled]:active,
.govuk-button[disabled]:active {
  top: 0;
  box-shadow: 0 2px 0 #002d18;
}
.govuk-button--secondary {
  background-color: #dee0e2;
  box-shadow: 0 2px 0 #858688;
}
.govuk-button--secondary, .govuk-button--secondary:link, .govuk-button--secondary:visited, .govuk-button--secondary:active, .govuk-button--secondary:hover {
  color: #0b0c0c;
}
.govuk-button--secondary:hover {
  background-color: #c8cacb;
}
.govuk-button--secondary:hover[disabled] {
  background-color: #dee0e2;
}
.govuk-button--warning {
  background-color: #d0190f;
  box-shadow: 0 2px 0 #530a06;
}
.govuk-button--warning, .govuk-button--warning:link, .govuk-button--warning:visited, .govuk-button--warning:active, .govuk-button--warning:hover {
  color: #ffffff;
}
.govuk-button--warning:hover {
  background-color: #a6140c;
}
.govuk-button--warning:hover[disabled] {
  background-color: #d0190f;
}
.govuk-button--start {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 40.0625em) {
  .govuk-button--start {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media print {
  .govuk-button--start {
    font-size: 18pt;
    line-height: 1;
  }
}
.govuk-button__start-icon {
  margin-left: 5px;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 48.0625em) {
  .govuk-button__start-icon {
    margin-left: 10px;
  }
}
.govuk-error-message {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 15px;
  clear: both;
  color: #d0190f;
}
@media print {
  .govuk-error-message {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-error-message {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-error-message {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.govuk-fieldset:after {
  content: "";
  display: block;
  clear: both;
}
@supports not (caret-color: auto) {
  .govuk-fieldset,
x:-moz-any-link {
    display: table-cell;
  }
}
.govuk-fieldset__legend {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  box-sizing: border-box;
  display: table;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
  white-space: normal;
}
@media print {
  .govuk-fieldset__legend {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-fieldset__legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-fieldset__legend {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-fieldset__legend {
    color: #000000;
  }
}
.govuk-fieldset__legend--xl {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  margin-bottom: 15px;
}
@media print {
  .govuk-fieldset__legend--xl {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-fieldset__legend--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}
@media print {
  .govuk-fieldset__legend--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
.govuk-fieldset__legend--l {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  margin-bottom: 15px;
}
@media print {
  .govuk-fieldset__legend--l {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-fieldset__legend--l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .govuk-fieldset__legend--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.govuk-fieldset__legend--m {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 15px;
}
@media print {
  .govuk-fieldset__legend--m {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-fieldset__legend--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-fieldset__legend--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.govuk-fieldset__legend--s {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .govuk-fieldset__legend--s {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-fieldset__legend--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-fieldset__legend--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-fieldset__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.govuk-hint {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 15px;
  color: #626a6e;
}
@media print {
  .govuk-hint {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-hint {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-hint {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-label:not(.govuk-label--m):not(.govuk-label--l):not(.govuk-label--xl) + .govuk-hint {
  margin-bottom: 10px;
}
.govuk-fieldset__legend:not(.govuk-fieldset__legend--m):not(.govuk-fieldset__legend--l):not(.govuk-fieldset__legend--xl) + .govuk-hint {
  margin-bottom: 10px;
}
.govuk-fieldset__legend + .govuk-hint,
.govuk-fieldset__legend + .govuk-hint {
  margin-top: -5px;
}
.govuk-label {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  display: block;
  margin-bottom: 5px;
}
@media print {
  .govuk-label {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-label {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-label {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-label {
    color: #000000;
  }
}
.govuk-label--xl {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  margin-bottom: 15px;
}
@media print {
  .govuk-label--xl {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-label--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}
@media print {
  .govuk-label--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
.govuk-label--l {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  margin-bottom: 15px;
}
@media print {
  .govuk-label--l {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-label--l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .govuk-label--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.govuk-label--m {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 10px;
}
@media print {
  .govuk-label--m {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-label--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-label--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.govuk-label--s {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .govuk-label--s {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-label--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-label--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-label-wrapper {
  margin: 0;
}
.govuk-checkboxes__item {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  position: relative;
  min-height: 40px;
  margin-bottom: 10px;
  padding-left: 40px;
  clear: left;
}
@media print {
  .govuk-checkboxes__item {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-checkboxes__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-checkboxes__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-checkboxes__item:last-child,
.govuk-checkboxes__item:last-of-type {
  margin-bottom: 0;
}
.govuk-checkboxes__input {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  margin: 0;
  opacity: 0;
}
.govuk-checkboxes__label {
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 15px 5px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.govuk-checkboxes__label::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  background: transparent;
}
.govuk-checkboxes__label::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 9px;
  width: 18px;
  height: 7px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: solid;
  border-width: 0 0 5px 5px;
  border-top-color: transparent;
  opacity: 0;
  background: transparent;
}
.govuk-checkboxes__hint {
  display: block;
  padding-right: 15px;
  padding-left: 15px;
}
.govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
  border-width: 4px;
  box-shadow: 0 0 0 3px #ffdf0f;
}
.govuk-checkboxes__input:checked + .govuk-checkboxes__label::after {
  opacity: 1;
}
.govuk-checkboxes__input:disabled,
.govuk-checkboxes__input:disabled + .govuk-checkboxes__label {
  cursor: default;
}
.govuk-checkboxes__input:disabled + .govuk-checkboxes__label {
  opacity: 0.5;
}
.govuk-checkboxes__conditional {
  margin-bottom: 15px;
  margin-left: 18px;
  padding-left: 33px;
  border-left: 4px solid #bfc1c3;
}
@media (min-width: 40.0625em) {
  .govuk-checkboxes__conditional {
    margin-bottom: 20px;
  }
}
.js-enabled .govuk-checkboxes__conditional--hidden {
  display: none;
}
.govuk-checkboxes__conditional > :last-child {
  margin-bottom: 0;
}
.govuk-checkboxes--small .govuk-checkboxes__item {
  min-height: 0;
  margin-bottom: 0;
  padding-left: 34px;
  float: left;
}
.govuk-checkboxes--small .govuk-checkboxes__item:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-checkboxes--small .govuk-checkboxes__input {
  left: -10px;
}
.govuk-checkboxes--small .govuk-checkboxes__label {
  margin-top: -2px;
  padding: 13px 15px 13px 1px;
  float: left;
}
@media (min-width: 40.0625em) {
  .govuk-checkboxes--small .govuk-checkboxes__label {
    padding: 11px 15px 10px 1px;
  }
}
.govuk-checkboxes--small .govuk-checkboxes__label::before {
  top: 8px;
  width: 24px;
  height: 24px;
}
.govuk-checkboxes--small .govuk-checkboxes__label::after {
  top: 15px;
  left: 6px;
  width: 9px;
  height: 3.5px;
  border-width: 0 0 3px 3px;
}
.govuk-checkboxes--small .govuk-checkboxes__hint {
  padding: 0;
  clear: both;
}
.govuk-checkboxes--small .govuk-checkboxes__conditional {
  margin-left: 10px;
  padding-left: 20px;
  clear: both;
}
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label::before {
  box-shadow: 0 0 0 10px #bfc1c3;
}
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
  box-shadow: 0 0 0 3px #ffdf0f, 0 0 0 10px #bfc1c3;
}
@media (hover: none), (pointer: coarse) {
  .govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label::before {
    box-shadow: initial;
  }
  .govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
    box-shadow: 0 0 0 3px #ffdf0f;
  }
}
.govuk-character-count {
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-character-count {
    margin-bottom: 30px;
  }
}
.govuk-character-count .govuk-form-group,
.govuk-character-count .govuk-textarea {
  margin-bottom: 5px;
}
.govuk-character-count .govuk-textarea--error {
  padding: 3px;
}
.govuk-character-count__message {
  margin-top: 0;
  margin-bottom: 0;
}
.govuk-character-count__message--disabled {
  visibility: hidden;
}
.govuk-summary-list {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin: 0;
  margin-bottom: 20px;
}
@media print {
  .govuk-summary-list {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-summary-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-summary-list {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list {
    margin-bottom: 30px;
  }
}
@media (max-width: 40.0525em) {
  .govuk-summary-list__row {
    margin-bottom: 15px;
    border-bottom: 1px solid #bfc1c3;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__row {
    display: table-row;
  }
}
.govuk-summary-list__key,
.govuk-summary-list__value,
.govuk-summary-list__actions {
  margin: 0;
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__key,
.govuk-summary-list__value,
.govuk-summary-list__actions {
    display: table-cell;
    padding-right: 20px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__key,
.govuk-summary-list__value,
.govuk-summary-list__actions {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bfc1c3;
  }
}
.govuk-summary-list__actions {
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__actions {
    width: 20%;
    padding-right: 0;
    text-align: right;
  }
}
.govuk-summary-list__key,
.govuk-summary-list__value {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.govuk-summary-list__key {
  margin-bottom: 5px;
  font-weight: 700;
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__key {
    width: 30%;
  }
}
@media (max-width: 40.0525em) {
  .govuk-summary-list__value {
    margin-bottom: 15px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__value {
    width: 50%;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__value:last-child {
    width: 70%;
  }
}
.govuk-summary-list__value > p {
  margin-bottom: 10px;
}
.govuk-summary-list__value > :last-child {
  margin-bottom: 0;
}
.govuk-summary-list__actions-list {
  width: 100%;
  margin: 0;
  padding: 0;
}
.govuk-summary-list__actions-list-item {
  display: inline;
  margin-right: 10px;
  padding-right: 10px;
}
.govuk-summary-list__actions-list-item:not(:last-child) {
  border-right: 1px solid #bfc1c3;
}
.govuk-summary-list__actions-list-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border: 0;
}
@media (max-width: 40.0525em) {
  .govuk-summary-list--no-border .govuk-summary-list__row {
    border: 0;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list--no-border .govuk-summary-list__key,
.govuk-summary-list--no-border .govuk-summary-list__value,
.govuk-summary-list--no-border .govuk-summary-list__actions {
    padding-bottom: 11px;
    border: 0;
  }
}
@media (max-width: 40.0525em) {
  .govuk-summary-list__row--no-border {
    border: 0;
  }
}
@media (min-width: 40.0625em) {
  .govuk-summary-list__row--no-border .govuk-summary-list__key,
.govuk-summary-list__row--no-border .govuk-summary-list__value,
.govuk-summary-list__row--no-border .govuk-summary-list__actions {
    padding-bottom: 11px;
    border: 0;
  }
}
.govuk-input {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  margin-top: 0;
  padding: 5px;
  border: 2px solid #0b0c0c;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media print {
  .govuk-input {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-input {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-input:focus {
  outline: 3px solid #ffdf0f;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}
.govuk-input::-webkit-outer-spin-button,
.govuk-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.govuk-input[type=number] {
  -moz-appearance: textfield;
}
.govuk-input--error {
  border: 4px solid #d0190f;
}
.govuk-input--error:focus {
  border-color: #0b0c0c;
  box-shadow: none;
}
.govuk-input--width-30 {
  max-width: 59ex;
}
.govuk-input--width-20 {
  max-width: 41ex;
}
.govuk-input--width-10 {
  max-width: 23ex;
}
.govuk-input--width-5 {
  max-width: 10.8ex;
}
.govuk-input--width-4 {
  max-width: 9ex;
}
.govuk-input--width-3 {
  max-width: 7.2ex;
}
.govuk-input--width-2 {
  max-width: 5.4ex;
}
.govuk-date-input {
  font-size: 0;
}
.govuk-date-input:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-date-input__item {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0;
}
.govuk-date-input__label {
  display: block;
}
.govuk-date-input__input {
  margin-bottom: 0;
}
.govuk-details {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-bottom: 20px;
  display: block;
}
@media print {
  .govuk-details {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-details {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-details {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-details {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-details {
    margin-bottom: 30px;
  }
}
.govuk-details__summary {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
  color: #0065b3;
  cursor: pointer;
}
.govuk-details__summary:hover {
  color: #003078;
}
.govuk-details__summary:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-details__summary-text {
  text-decoration: underline;
}
.govuk-details__summary:focus .govuk-details__summary-text {
  text-decoration: none;
}
.govuk-details__summary::-webkit-details-marker {
  display: none;
}
.govuk-details__summary:before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 7px 0 7px 12.124px;
  border-left-color: inherit;
}
.govuk-details[open] > .govuk-details__summary:before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 12.124px 7px 0 7px;
  border-top-color: inherit;
}
.govuk-details__text {
  padding: 15px;
  padding-left: 20px;
  border-left: 5px solid #bfc1c3;
}
.govuk-details__text p {
  margin-top: 0;
  margin-bottom: 20px;
}
.govuk-details__text > :last-child {
  margin-bottom: 0;
}
.govuk-error-summary {
  color: #0b0c0c;
  padding: 15px;
  margin-bottom: 30px;
  border: 5px solid #d0190f;
}
@media print {
  .govuk-error-summary {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-error-summary {
    padding: 20px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-error-summary {
    margin-bottom: 50px;
  }
}
.govuk-error-summary:focus {
  outline: 3px solid #ffdf0f;
}
.govuk-error-summary__title {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-top: 0;
  margin-bottom: 15px;
}
@media print {
  .govuk-error-summary__title {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-error-summary__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-error-summary__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .govuk-error-summary__title {
    margin-bottom: 20px;
  }
}
.govuk-error-summary__body {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .govuk-error-summary__body {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-error-summary__body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-error-summary__body {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-error-summary__body p {
  margin-top: 0;
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .govuk-error-summary__body p {
    margin-bottom: 20px;
  }
}
.govuk-error-summary__list {
  margin-top: 0;
  margin-bottom: 0;
}
.govuk-error-summary__list a {
  font-weight: 700;
}
.govuk-error-summary__list a:link, .govuk-error-summary__list a:visited, .govuk-error-summary__list a:hover, .govuk-error-summary__list a:active {
  color: #d0190f;
}
.govuk-error-summary__list a:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-file-upload {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media print {
  .govuk-file-upload {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-file-upload {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-file-upload {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-file-upload {
    color: #000000;
  }
}
.govuk-file-upload:focus {
  margin-right: -5px;
  margin-left: -5px;
  padding-right: 5px;
  padding-left: 5px;
  outline: 3px solid #ffdf0f;
  box-shadow: inset 0 0 0 4px #0b0c0c;
}
.govuk-file-upload:focus-within {
  margin-right: -5px;
  margin-left: -5px;
  padding-right: 5px;
  padding-left: 5px;
  outline: 3px solid #ffdf0f;
  box-shadow: inset 0 0 0 4px #0b0c0c;
}
.govuk-file-upload--error {
  margin-right: -5px;
  margin-left: -5px;
  padding-right: 5px;
  padding-left: 5px;
  border: 4px solid #d0190f;
}
.govuk-file-upload--error:focus {
  border-color: #0b0c0c;
  box-shadow: none;
}
.govuk-file-upload--error:focus-within {
  border-color: #0b0c0c;
  box-shadow: none;
}
.govuk-inset-text {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
  border-left: 10px solid #bfc1c3;
}
@media print {
  .govuk-inset-text {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-inset-text {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-inset-text {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-inset-text {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-inset-text {
    margin-top: 30px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-inset-text {
    margin-bottom: 30px;
  }
}
.govuk-inset-text > :first-child {
  margin-top: 0;
}
.govuk-inset-text > :only-child,
.govuk-inset-text > :last-child {
  margin-bottom: 0;
}
.govuk-panel {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  margin-bottom: 15px;
  padding: 35px;
  border: 5px solid transparent;
  text-align: center;
}
@media print {
  .govuk-panel {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-panel {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-panel {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .govuk-panel {
    padding: 25px;
  }
}
.govuk-panel--confirmation {
  color: #ffffff;
  background: #00703c;
}
.govuk-panel__title {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
}
@media print {
  .govuk-panel__title {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-panel__title {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}
@media print {
  .govuk-panel__title {
    font-size: 32pt;
    line-height: 1.15;
  }
}
.govuk-panel__title:last-child {
  margin-bottom: 0;
}
.govuk-panel__body {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
}
@media print {
  .govuk-panel__body {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-panel__body {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .govuk-panel__body {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.govuk-tag {
  display: inline-block;
  outline: 2px solid transparent;
  outline-offset: -2px;
  color: #ffffff;
  background-color: #0065b3;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding-top: 5px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
}
@media print {
  .govuk-tag {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-tag {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}
@media print {
  .govuk-tag {
    font-size: 14pt;
    line-height: 1;
  }
}
.govuk-tag--inactive {
  background-color: #626a6e;
}
.govuk-phase-banner {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bfc1c3;
}
.govuk-phase-banner__content {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  display: table;
  margin: 0;
}
@media print {
  .govuk-phase-banner__content {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-phase-banner__content {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-phase-banner__content {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .govuk-phase-banner__content {
    color: #000000;
  }
}
.govuk-phase-banner__content__tag {
  margin-right: 10px;
}
.govuk-phase-banner__text {
  display: table-cell;
  vertical-align: baseline;
}
.govuk-radios__item {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  position: relative;
  min-height: 40px;
  margin-bottom: 10px;
  padding-left: 40px;
  clear: left;
}
@media print {
  .govuk-radios__item {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-radios__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-radios__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-radios__item:last-child,
.govuk-radios__item:last-of-type {
  margin-bottom: 0;
}
.govuk-radios__input {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  margin: 0;
  opacity: 0;
}
.govuk-radios__label {
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 15px 5px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.govuk-radios__label::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}
.govuk-radios__label::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0;
  height: 0;
  border: 10px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  background: currentColor;
}
.govuk-radios__hint {
  display: block;
  padding-right: 15px;
  padding-left: 15px;
}
.govuk-radios__input:focus + .govuk-radios__label::before {
  border-width: 4px;
  box-shadow: 0 0 0 4px #ffdf0f;
}
.govuk-radios__input:checked + .govuk-radios__label::after {
  opacity: 1;
}
.govuk-radios__input:disabled,
.govuk-radios__input:disabled + .govuk-radios__label {
  cursor: default;
}
.govuk-radios__input:disabled + .govuk-radios__label {
  opacity: 0.5;
}
@media (min-width: 40.0625em) {
  .govuk-radios--inline:after {
    content: "";
    display: block;
    clear: both;
  }
  .govuk-radios--inline .govuk-radios__item {
    margin-right: 20px;
    float: left;
    clear: none;
  }
}
.govuk-radios--inline.govuk-radios--conditional .govuk-radios__item {
  margin-right: 0;
  float: none;
}
.govuk-radios__divider {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  width: 40px;
  margin-bottom: 10px;
  text-align: center;
}
@media print {
  .govuk-radios__divider {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-radios__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-radios__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-radios__divider {
    color: #000000;
  }
}
.govuk-radios__conditional {
  margin-bottom: 15px;
  margin-left: 18px;
  padding-left: 33px;
  border-left: 4px solid #bfc1c3;
}
@media (min-width: 40.0625em) {
  .govuk-radios__conditional {
    margin-bottom: 20px;
  }
}
.js-enabled .govuk-radios__conditional--hidden {
  display: none;
}
.govuk-radios__conditional > :last-child {
  margin-bottom: 0;
}
.govuk-radios--small .govuk-radios__item {
  min-height: 0;
  margin-bottom: 0;
  padding-left: 34px;
  float: left;
}
.govuk-radios--small .govuk-radios__item:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-radios--small .govuk-radios__input {
  left: -10px;
}
.govuk-radios--small .govuk-radios__label {
  margin-top: -2px;
  padding: 13px 15px 13px 1px;
  float: left;
}
@media (min-width: 40.0625em) {
  .govuk-radios--small .govuk-radios__label {
    padding: 11px 15px 10px 1px;
  }
}
.govuk-radios--small .govuk-radios__label::before {
  top: 8px;
  width: 24px;
  height: 24px;
}
.govuk-radios--small .govuk-radios__label::after {
  top: 15px;
  left: 7px;
  border-width: 5px;
}
.govuk-radios--small .govuk-radios__hint {
  padding: 0;
  clear: both;
  pointer-events: none;
}
.govuk-radios--small .govuk-radios__conditional {
  margin-left: 10px;
  padding-left: 20px;
  clear: both;
}
.govuk-radios--small .govuk-radios__divider {
  width: 24px;
  margin-bottom: 5px;
}
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label::before {
  box-shadow: 0 0 0 10px #bfc1c3;
}
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
  box-shadow: 0 0 0 4px #ffdf0f, 0 0 0 10px #bfc1c3;
}
@media (hover: none), (pointer: coarse) {
  .govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label::before {
    box-shadow: initial;
  }
  .govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
    box-shadow: 0 0 0 4px #ffdf0f;
  }
}
.govuk-select {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  max-width: 100%;
  height: 40px;
  padding: 5px;
  border: 2px solid #0b0c0c;
}
@media print {
  .govuk-select {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-select {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-select {
    font-size: 14pt;
    line-height: 1.25;
  }
}
.govuk-select:focus {
  outline: 3px solid #ffdf0f;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}
.govuk-select option:active,
.govuk-select option:checked,
.govuk-select:focus::-ms-value {
  color: #ffffff;
  background-color: #0065b3;
}
.govuk-select--error {
  border: 4px solid #d0190f;
}
.govuk-select--error:focus {
  border-color: #0b0c0c;
  box-shadow: none;
}
.govuk-skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: block;
  padding: 10px 15px;
}
.govuk-skip-link:active, .govuk-skip-link:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  white-space: inherit !important;
}
@media print {
  .govuk-skip-link {
    font-family: sans-serif;
  }
}
.govuk-skip-link:link, .govuk-skip-link:visited {
  color: #0b0c0c;
}
@media print {
  .govuk-skip-link:link, .govuk-skip-link:visited {
    color: #000000;
  }
}
.govuk-skip-link:hover {
  color: rgba(11, 12, 12, 0.99);
}
.govuk-skip-link:active, .govuk-skip-link:focus {
  color: #0b0c0c;
}
@media print {
  .govuk-skip-link:active, .govuk-skip-link:focus {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-skip-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-skip-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@supports (padding: max(calc(0px))) {
  .govuk-skip-link {
    padding-right: max(15px, calc(15px + env(safe-area-inset-right)));
    padding-left: max(15px, calc(15px + env(safe-area-inset-left)));
  }
}
.govuk-skip-link:focus {
  outline: 3px solid #ffdf0f;
  background-color: #ffdf0f;
}
.govuk-textarea {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 40px;
  margin-bottom: 20px;
  padding: 5px;
  resize: vertical;
  border: 2px solid #0b0c0c;
  border-radius: 0;
  -webkit-appearance: none;
}
@media print {
  .govuk-textarea {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-textarea {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-textarea {
    font-size: 14pt;
    line-height: 1.25;
  }
}
@media (min-width: 40.0625em) {
  .govuk-textarea {
    margin-bottom: 30px;
  }
}
.govuk-textarea:focus {
  outline: 3px solid #ffdf0f;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}
.govuk-textarea--error {
  border: 4px solid #d0190f;
}
.govuk-textarea--error:focus {
  border-color: #0b0c0c;
  box-shadow: none;
}
.govuk-warning-text {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  position: relative;
  margin-bottom: 20px;
  padding: 10px 0;
}
@media print {
  .govuk-warning-text {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-warning-text {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-warning-text {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-warning-text {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-warning-text {
    margin-bottom: 30px;
  }
}
.govuk-warning-text__assistive {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.govuk-warning-text__icon {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  min-width: 32px;
  min-height: 29px;
  margin-top: -20px;
  padding-top: 3px;
  border: 3px solid #0b0c0c;
  border-radius: 50%;
  color: #ffffff;
  background: #0b0c0c;
  font-size: 1.6em;
  line-height: 29px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media print {
  .govuk-warning-text__icon {
    font-family: sans-serif;
  }
}
.govuk-warning-text__text {
  display: block;
  padding-left: 50px;
}
.govuk-accordion {
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-accordion {
    margin-bottom: 30px;
  }
}
.govuk-accordion__section {
  padding-top: 15px;
}
.govuk-accordion__section-header {
  padding-top: 15px;
  padding-bottom: 15px;
}
.govuk-accordion__section-heading {
  margin-top: 0;
  margin-bottom: 0;
}
.govuk-accordion__section-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: inline-block;
  margin-bottom: 0;
  padding-top: 15px;
}
@media print {
  .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-accordion__section-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-accordion__section-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.govuk-accordion__section-summary {
  margin-top: 10px;
  margin-bottom: 0;
}
.govuk-accordion__section-content > :last-child {
  margin-bottom: 0;
}
.js-enabled .govuk-accordion {
  border-bottom: 1px solid #bfc1c3;
}
.js-enabled .govuk-accordion__section {
  padding-top: 0;
}
.js-enabled .govuk-accordion__section-content {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-accordion__section-content {
    padding-top: 15px;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-accordion__section-content {
    padding-bottom: 15px;
  }
}
.js-enabled .govuk-accordion__section--expanded .govuk-accordion__section-content {
  display: block;
}
.js-enabled .govuk-accordion__open-all {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-width: 0;
  color: #0065b3;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .js-enabled .govuk-accordion__open-all {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-accordion__open-all {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .js-enabled .govuk-accordion__open-all {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .js-enabled .govuk-accordion__open-all {
    font-family: sans-serif;
  }
}
.js-enabled .govuk-accordion__open-all:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.js-enabled .govuk-accordion__open-all:link {
  color: #0065b3;
}
.js-enabled .govuk-accordion__open-all:visited {
  color: #4c2c92;
}
.js-enabled .govuk-accordion__open-all:hover {
  color: #003078;
}
.js-enabled .govuk-accordion__open-all:active {
  color: #0b0c0c;
}
.js-enabled .govuk-accordion__open-all:focus {
  color: #0b0c0c;
}
.js-enabled .govuk-accordion__open-all::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.js-enabled .govuk-accordion__section-header {
  position: relative;
  padding-right: 40px;
  border-top: 1px solid #bfc1c3;
  color: #0065b3;
  cursor: pointer;
}
@media (hover: none) {
  .js-enabled .govuk-accordion__section-header:hover {
    border-top-color: #0065b3;
    box-shadow: inset 0 3px 0 0 #0065b3;
  }
}
.js-enabled .govuk-accordion__section-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
  border-width: 0;
  color: inherit;
  background: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
}
@media print {
  .js-enabled .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}
.js-enabled .govuk-accordion__section-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.js-enabled .govuk-accordion__section-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.js-enabled .govuk-accordion__section-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.js-enabled .govuk-accordion__section-button:hover:not(:focus) {
  text-decoration: underline;
}
@media (hover: none) {
  .js-enabled .govuk-accordion__section-button:hover {
    text-decoration: none;
  }
}
.js-enabled .govuk-accordion__controls {
  text-align: right;
}
.js-enabled .govuk-accordion__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
}
.js-enabled .govuk-accordion__icon:after,
.js-enabled .govuk-accordion__icon:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 25%;
  margin: auto;
  border: 2px solid transparent;
  background-color: #0b0c0c;
}
.js-enabled .govuk-accordion__icon:before {
  width: 100%;
}
.js-enabled .govuk-accordion__icon:after {
  height: 100%;
}
.js-enabled .govuk-accordion__section--expanded .govuk-accordion__icon:after {
  content: " ";
  display: none;
}
.govuk-breadcrumbs {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  margin-top: 15px;
  margin-bottom: 10px;
}
@media print {
  .govuk-breadcrumbs {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-breadcrumbs {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-breadcrumbs {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .govuk-breadcrumbs {
    color: #000000;
  }
}
.govuk-breadcrumbs__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.govuk-breadcrumbs__list:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-breadcrumbs__list-item {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  margin-left: 10px;
  padding-left: 15.655px;
  float: left;
}
.govuk-breadcrumbs__list-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3.31px;
  width: 7px;
  height: 7px;
  margin: auto 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: solid;
  border-width: 1px 1px 0 0;
  border-color: #626a6e;
}
.govuk-breadcrumbs__list-item:first-child {
  margin-left: 0;
  padding-left: 0;
}
.govuk-breadcrumbs__list-item:first-child:before {
  content: none;
  display: none;
}
.govuk-breadcrumbs__link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .govuk-breadcrumbs__link {
    font-family: sans-serif;
  }
}
.govuk-breadcrumbs__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-breadcrumbs__link:link, .govuk-breadcrumbs__link:visited {
  color: #0b0c0c;
}
@media print {
  .govuk-breadcrumbs__link:link, .govuk-breadcrumbs__link:visited {
    color: #000000;
  }
}
.govuk-breadcrumbs__link:hover {
  color: rgba(11, 12, 12, 0.99);
}
.govuk-breadcrumbs__link:active, .govuk-breadcrumbs__link:focus {
  color: #0b0c0c;
}
@media print {
  .govuk-breadcrumbs__link:active, .govuk-breadcrumbs__link:focus {
    color: #000000;
  }
}
.govuk-tabs {
  margin-top: 5px;
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-tabs {
    margin-top: 5px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-tabs {
    margin-bottom: 30px;
  }
}
.govuk-tabs__title {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-bottom: 10px;
}
@media print {
  .govuk-tabs__title {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-tabs__title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-tabs__title {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-tabs__title {
    color: #000000;
  }
}
.govuk-tabs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-tabs__list {
    margin-bottom: 30px;
  }
}
.govuk-tabs__list-item {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-left: 25px;
}
@media print {
  .govuk-tabs__list-item {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-tabs__list-item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-tabs__list-item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.govuk-tabs__list-item::before {
  color: #0b0c0c;
  content: "—";
  margin-left: -25px;
  padding-right: 5px;
}
@media print {
  .govuk-tabs__list-item::before {
    color: #000000;
  }
}
.govuk-tabs__tab {
  display: inline-block;
  margin-bottom: 10px;
}
.govuk-tabs__tab:link {
  color: #0065b3;
}
.govuk-tabs__tab:visited {
  color: #4c2c92;
}
.govuk-tabs__tab:hover {
  color: #003078;
}
.govuk-tabs__tab:active {
  color: #0b0c0c;
}
.govuk-tabs__tab:focus {
  color: #0b0c0c;
}
.govuk-tabs__tab:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-tabs__panel {
  margin-bottom: 30px;
}
@media (min-width: 40.0625em) {
  .govuk-tabs__panel {
    margin-bottom: 50px;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__list {
    margin-bottom: 0;
    border-bottom: 1px solid #bfc1c3;
  }
  .js-enabled .govuk-tabs__list:after {
    content: "";
    display: block;
    clear: both;
  }
  .js-enabled .govuk-tabs__title {
    display: none;
  }
  .js-enabled .govuk-tabs__list-item {
    position: relative;
    margin-right: 5px;
    margin-bottom: 0;
    margin-left: 0;
    padding: 10px 20px;
    float: left;
    background-color: #dee0e2;
    text-align: center;
  }
  .js-enabled .govuk-tabs__list-item::before {
    content: none;
  }
  .js-enabled .govuk-tabs__list-item--selected {
    position: relative;
    margin-top: -5px;
    margin-bottom: -1px;
    padding-top: 14px;
    padding-right: 19px;
    padding-bottom: 16px;
    padding-left: 19px;
    border: 1px solid #bfc1c3;
    border-bottom: 0;
    background-color: #ffffff;
  }
  .js-enabled .govuk-tabs__list-item--selected .govuk-tabs__tab {
    text-decoration: none;
  }
  .js-enabled .govuk-tabs__tab {
    margin-bottom: 0;
  }
  .js-enabled .govuk-tabs__tab:link, .js-enabled .govuk-tabs__tab:visited {
    color: #0b0c0c;
  }
}
@media print and (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__tab:link, .js-enabled .govuk-tabs__tab:visited {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__tab:hover {
    color: rgba(11, 12, 12, 0.99);
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__tab:active, .js-enabled .govuk-tabs__tab:focus {
    color: #0b0c0c;
  }
}
@media print and (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__tab:active, .js-enabled .govuk-tabs__tab:focus {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__tab::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__panel {
    margin-bottom: 0;
    padding: 30px 20px;
    border: 1px solid #bfc1c3;
    border-top: 0;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__panel {
    margin-bottom: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__panel > :last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-tabs__panel--hidden {
    display: none;
  }
}
.govuk-table {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
}
@media print {
  .govuk-table {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-table {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .govuk-table {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .govuk-table {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .govuk-table {
    margin-bottom: 30px;
  }
}
.govuk-table__header {
  font-weight: 700;
}
.govuk-table__header,
.govuk-table__cell {
  padding: 10px 20px 10px 0;
  border-bottom: 1px solid #bfc1c3;
  text-align: left;
  vertical-align: top;
}
.govuk-table__cell--numeric {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
  font-weight: 400;
}
@media print {
  .govuk-table__cell--numeric {
    font-family: sans-serif;
  }
}
@supports (font-variant-numeric: tabular-nums) {
  .govuk-table__cell--numeric {
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant-numeric: tabular-nums;
  }
}
.govuk-table__header--numeric,
.govuk-table__cell--numeric {
  text-align: right;
}
.govuk-table__header:last-child,
.govuk-table__cell:last-child {
  padding-right: 0;
}
.govuk-table__caption {
  font-weight: 700;
  display: table-caption;
  text-align: left;
}
.govuk-footer {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #bfc1c3;
  color: #0b0c0c;
  background: #dee0e2;
}
@media print {
  .govuk-footer {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-footer {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-footer {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .govuk-footer {
    padding-top: 40px;
  }
}
@media (min-width: 40.0625em) {
  .govuk-footer {
    padding-bottom: 25px;
  }
}
.govuk-footer__link:link, .govuk-footer__link:visited, .govuk-footer__link:hover, .govuk-footer__link:active {
  color: #0b0c0c;
}
.govuk-footer__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-footer__inline-list .govuk-footer__link,
.govuk-footer__list .govuk-footer__link {
  text-decoration: none;
}
.govuk-footer__inline-list .govuk-footer__link:hover:not(:focus), .govuk-footer__inline-list .govuk-footer__link:active:not(:focus),
.govuk-footer__list .govuk-footer__link:hover:not(:focus),
.govuk-footer__list .govuk-footer__link:active:not(:focus) {
  text-decoration: underline;
}
.govuk-footer__section-break {
  margin: 0;
  margin-bottom: 30px;
  border: 0;
  border-bottom: 1px solid #bfc1c3;
}
@media (min-width: 40.0625em) {
  .govuk-footer__section-break {
    margin-bottom: 50px;
  }
}
.govuk-footer__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.govuk-footer__meta-item {
  margin-right: 15px;
  margin-bottom: 25px;
  margin-left: 15px;
}
.govuk-footer__meta-item--grow {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 40.0525em) {
  .govuk-footer__meta-item--grow {
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px;
  }
}
.govuk-footer__licence-logo {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}
@media (max-width: 48.0525em) {
  .govuk-footer__licence-logo {
    margin-bottom: 15px;
  }
}
.govuk-footer__licence-description {
  display: inline-block;
}
.govuk-footer__copyright-logo {
  display: inline-block;
  min-width: 125px;
  padding-top: 112px;
  background-image: url("/assets/images/govuk-crest.png");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 125px 102px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .govuk-footer__copyright-logo {
    background-image: url("/assets/images/govuk-crest-2x.png");
  }
}
.govuk-footer__inline-list {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 0;
}
.govuk-footer__meta-custom {
  margin-bottom: 20px;
}
.govuk-footer__inline-list-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}
.govuk-footer__heading {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #bfc1c3;
}
@media (min-width: 40.0625em) {
  .govuk-footer__heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 40.0525em) {
  .govuk-footer__heading {
    padding-bottom: 10px;
  }
}
.govuk-footer__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.govuk-footer__section {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 30px;
  margin-left: 15px;
  vertical-align: top;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
@media (max-width: 48.0525em) {
  .govuk-footer__section {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
  }
}
@media (min-width: 48.0625em) {
  .govuk-footer__section:first-child {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
}
.govuk-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (min-width: 48.0625em) {
  .govuk-footer__list--columns-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .govuk-footer__list--columns-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
.govuk-footer__list-item {
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .govuk-footer__list-item {
    margin-bottom: 20px;
  }
}
.govuk-footer__list-item:last-child {
  margin-bottom: 0;
}
.govuk-header {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  border-bottom: 10px solid #ffffff;
  color: #ffffff;
  background: #0b0c0c;
}
@media print {
  .govuk-header {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-header {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-header {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.govuk-header__container--full-width {
  padding: 0 15px;
  border-color: #0065b3;
}
.govuk-header__container--full-width .govuk-header__menu-button {
  right: 15px;
}
.govuk-header__container {
  position: relative;
  margin-bottom: -10px;
  padding-top: 10px;
  border-bottom: 10px solid #0065b3;
}
.govuk-header__container:after {
  content: "";
  display: block;
  clear: both;
}
.govuk-header__logotype {
  margin-right: 5px;
}
.govuk-header__logotype-crown {
  position: relative;
  top: -1px;
  margin-right: 1px;
  fill: currentColor;
  vertical-align: top;
}
.govuk-header__logotype-crown-fallback-image {
  width: 36px;
  height: 32px;
  border: 0;
  vertical-align: middle;
}
.govuk-header__product-name {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-table;
  padding-right: 10px;
}
@media print {
  .govuk-header__product-name {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-header__product-name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media print {
  .govuk-header__product-name {
    font-size: 18pt;
    line-height: 1;
  }
}
.govuk-header__link {
  text-decoration: none;
}
.govuk-header__link:link, .govuk-header__link:visited {
  color: #ffffff;
}
.govuk-header__link:hover {
  text-decoration: underline;
}
.govuk-header__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-header__link--homepage {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}
@media print {
  .govuk-header__link--homepage {
    font-family: sans-serif;
  }
}
.govuk-header__link--homepage:link, .govuk-header__link--homepage:visited {
  text-decoration: none;
}
.govuk-header__link--homepage:hover, .govuk-header__link--homepage:active {
  margin-bottom: -1px;
  border-bottom: 1px solid;
}
.govuk-header__link--homepage:focus {
  margin-bottom: 0;
  border-bottom: 0;
}
.govuk-header__link--service-name {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
}
@media print {
  .govuk-header__link--service-name {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-header__link--service-name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-header__link--service-name {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.govuk-header__logo,
.govuk-header__content {
  box-sizing: border-box;
}
.govuk-header__logo {
  margin-bottom: 10px;
  padding-right: 50px;
}
@media (min-width: 40.0625em) {
  .govuk-header__logo {
    margin-bottom: 10px;
  }
}
@media (min-width: 48.0625em) {
  .govuk-header__logo {
    width: 33.33%;
    padding-right: 15px;
    float: left;
    vertical-align: top;
  }
}
@media (min-width: 48.0625em) {
  .govuk-header__content {
    width: 66.66%;
    padding-left: 15px;
    float: left;
  }
}
.govuk-header__menu-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: none;
  position: absolute;
  top: 20px;
  right: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: none;
}
@media print {
  .govuk-header__menu-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-header__menu-button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-header__menu-button {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.govuk-header__menu-button:hover {
  text-decoration: underline;
}
.govuk-header__menu-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.govuk-header__menu-button::after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 8.66px 5px 0 5px;
  border-top-color: inherit;
  content: "";
  margin-left: 5px;
}
@media (min-width: 40.0625em) {
  .govuk-header__menu-button {
    top: 15px;
  }
}
.govuk-header__menu-button--open::after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-width: 0 5px 8.66px 5px;
  border-bottom-color: inherit;
}
.govuk-header__navigation {
  margin-bottom: 10px;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 40.0625em) {
  .govuk-header__navigation {
    margin-bottom: 10px;
  }
}
.js-enabled .govuk-header__menu-button {
  display: block;
}
@media (min-width: 48.0625em) {
  .js-enabled .govuk-header__menu-button {
    display: none;
  }
}
.js-enabled .govuk-header__navigation {
  display: none;
}
@media (min-width: 48.0625em) {
  .js-enabled .govuk-header__navigation {
    display: block;
  }
}
.js-enabled .govuk-header__navigation--open {
  display: block;
}
@media (min-width: 48.0625em) {
  .govuk-header__navigation--end {
    margin: 0;
    padding: 5px 0;
    text-align: right;
  }
}
.govuk-header__navigation--no-service-name {
  padding-top: 40px;
}
.govuk-header__navigation-item {
  padding: 10px 0;
  border-bottom: 1px solid #2e3133;
}
@media (min-width: 48.0625em) {
  .govuk-header__navigation-item {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 0;
    border: 0;
  }
}
.govuk-header__navigation-item a {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  white-space: nowrap;
}
@media print {
  .govuk-header__navigation-item a {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-header__navigation-item a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-header__navigation-item a {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.govuk-header__navigation-item--active a:link, .govuk-header__navigation-item--active a:hover, .govuk-header__navigation-item--active a:visited {
  color: #1d8feb;
}
.govuk-header__navigation-item--active a:focus {
  color: #0b0c0c;
}
.govuk-header__navigation-item:last-child {
  margin-right: 0;
}
@media print {
  .govuk-header {
    border-bottom-width: 0;
    color: #0b0c0c;
    background: transparent;
  }
  .govuk-header__logotype-crown-fallback-image {
    display: none;
  }
  .govuk-header__link:link, .govuk-header__link:visited {
    color: #0b0c0c;
  }
  .govuk-header__link:after {
    display: none;
  }
}
.govuk-template {
  background-color: #dee0e2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-y: inherit;
}
@media screen and (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .govuk-template {
    overflow-y: scroll;
  }
}
.govuk-template__body {
  margin: 0;
  background-color: #ffffff;
}
.idsk-text-justify {
  text-align: justify;
}
.idsk-hr-separator, .idsk-hr-separator-until-tablet {
  background: black;
  height: 5px;
  margin-top: 30px;
  margin-bottom: 0;
  border: none;
}
@media (max-width: 40.0525em) {
  .idsk-hr-separator-until-tablet {
    height: 0;
    margin-top: 0;
  }
}
.idsk-list--letters {
  counter-reset: list;
}
.idsk-list--letters > li {
  list-style: none;
  position: relative;
}
.idsk-list--letters > li:before {
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
  position: absolute;
  left: -20px;
}
.idsk-button-group {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 40.0625em) {
  .idsk-button-group {
    margin-bottom: 15px;
  }
}
.idsk-button-group .govuk-link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  display: inline-block;
  max-width: 100%;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
}
@media print {
  .idsk-button-group .govuk-link {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-button-group .govuk-link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1;
  }
}
@media print {
  .idsk-button-group .govuk-link {
    font-size: 14pt;
    line-height: 19px;
  }
}
.idsk-button-group .idsk-button {
  margin-bottom: 17px;
}
@media (min-width: 40.0625em) {
  .idsk-button-group {
    margin-right: -15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .idsk-button-group .idsk-button,
.idsk-button-group .govuk-link {
    margin-right: 15px;
  }
  .idsk-button-group .govuk-link {
    text-align: left;
  }
}
.idsk-banner .app-pane-grey {
  background-color: #dee0e2;
  border-bottom: 1px solid #003078;
}
.idsk-banner__content {
  padding-left: 15px;
}
.idsk-banner .govuk-heading-s {
  margin-bottom: 0;
  padding-top: 15px;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/SourceSansPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/SourceSansPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/fonts/fa-regular-400.woff2") format("woff2"), url("/assets/fonts/fa-regular-400.woff") format("woff");
  font-weight: normal;
  font-style: solid;
  font-display: fallback;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/fonts/fa-solid-900.woff2") format("woff2"), url("/assets/fonts/fa-solid-900.woff") format("woff");
  font-weight: normal;
  font-style: solid;
  font-display: fallback;
}
@font-face {
  font-family: "FontAwesome";
  src: url("/assets/fonts/fa-brands-400.woff2") format("woff2"), url("/assets/fonts/fa-brands-400.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
.fa, .fas, .far, .fal, .fad, .fab {
  font-family: "FontAwesome";
}
.govuk-breadcrumbs {
  margin-top: 25px;
}
@media (min-width: 40.0625em) {
  .govuk-main-wrapper {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.idsk-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 8px 10px 7px;
  border: 2px solid transparent;
  border-radius: 0;
  color: #ffffff;
  background-color: #00703c;
  box-shadow: 0 2px 0 #002d18;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  -webkit-appearance: none;
}
@media print {
  .idsk-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1;
  }
}
@media print {
  .idsk-button {
    font-size: 14pt;
    line-height: 19px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-button {
    margin-bottom: 32px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-button {
    width: auto;
  }
}
.idsk-button:link, .idsk-button:visited, .idsk-button:active, .idsk-button:hover {
  color: #ffffff;
  text-decoration: none;
}
.idsk-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.idsk-button:hover {
  background-color: #204e2e;
}
.idsk-button:active {
  top: 2px;
}
.idsk-button:focus {
  border-color: #ffdf0f;
  outline: 3px solid transparent;
  box-shadow: inset 0 0 0 1px #ffdf0f;
}
.idsk-button:focus:not(:active):not(:hover) {
  border-color: #ffdf0f;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 2px 0 #0b0c0c;
}
.idsk-button:focus:not(:active):not(:hover) svg,
.idsk-button:focus:not(:active):not(:hover) svg path {
  fill: #0b0c0c;
}
.idsk-button::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -4px;
  left: -2px;
  background: transparent;
}
.idsk-button:active::before {
  top: -4px;
}
.idsk-button--disabled,
.idsk-button[disabled=disabled],
.idsk-button[disabled] {
  opacity: 0.5;
}
.idsk-button--disabled:hover,
.idsk-button[disabled=disabled]:hover,
.idsk-button[disabled]:hover {
  background-color: #00703c;
  cursor: default;
}
.idsk-button--disabled:focus,
.idsk-button[disabled=disabled]:focus,
.idsk-button[disabled]:focus {
  outline: none;
}
.idsk-button--disabled:active,
.idsk-button[disabled=disabled]:active,
.idsk-button[disabled]:active {
  top: 0;
  box-shadow: 0 2px 0 #002d18;
}
.idsk-button--secondary {
  background-color: #f3f2f1;
  box-shadow: 0 2px 0 #929191;
}
.idsk-button--secondary, .idsk-button--secondary:link, .idsk-button--secondary:visited, .idsk-button--secondary:active, .idsk-button--secondary:hover {
  color: #0b0c0c;
}
.idsk-button--secondary:hover {
  background-color: #dee0e2;
}
.idsk-button--secondary:hover[disabled] {
  background-color: #f3f2f1;
}
.idsk-button--warning {
  background-color: #d0190f;
  box-shadow: 0 2px 0 #530a06;
}
.idsk-button--warning, .idsk-button--warning:link, .idsk-button--warning:visited, .idsk-button--warning:active, .idsk-button--warning:hover {
  color: #ffffff;
}
.idsk-button--warning:hover {
  background-color: #9e1912;
}
.idsk-button--warning:hover[disabled] {
  background-color: #d0190f;
}
.idsk-button--start {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 40.0625em) {
  .idsk-button--start {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media print {
  .idsk-button--start {
    font-size: 18pt;
    line-height: 1;
  }
}
.idsk-button__start-icon {
  margin-left: 5px;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 48.0625em) {
  .idsk-button__start-icon {
    margin-left: 10px;
  }
}
.idsk-character-count {
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .idsk-character-count {
    margin-bottom: 30px;
  }
}
.idsk-character-count .govuk-form-group,
.idsk-character-count .govuk-textarea {
  margin-bottom: 5px;
}
.idsk-character-count .govuk-textarea--error {
  padding: 3px;
}
.govuk-character-count__message {
  margin-top: 0;
  margin-bottom: 0;
}
.govuk-character-count__message--disabled {
  visibility: hidden;
}
.idsk-customer-surveys {
  margin-top: 25px;
}
.idsk-customer-surveys--line {
  border-top: 1px solid #0b0c0c;
  background-color: #0b0c0c;
}
.idsk-customer-surveys--hidden {
  display: none;
}
.idsk-customer-surveys--show {
  display: block;
}
.idsk-customer-survey__caption {
  margin-top: -10px;
}
#idsk-customer-surveys__previous-button.govuk-button--secondary {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-right: 20px;
  line-height: 1;
  width: auto;
}
@media print {
  #idsk-customer-surveys__previous-button.govuk-button--secondary {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  #idsk-customer-surveys__previous-button.govuk-button--secondary {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  #idsk-customer-surveys__previous-button.govuk-button--secondary {
    font-size: 18pt;
    line-height: 1.15;
  }
}
#idsk-customer-surveys__send-button.idsk-button--start {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  font-weight: normal;
  width: auto;
}
@media print {
  #idsk-customer-surveys__send-button.idsk-button--start {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  #idsk-customer-surveys__send-button.idsk-button--start {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  #idsk-customer-surveys__send-button.idsk-button--start {
    font-size: 18pt;
    line-height: 1.15;
  }
}
#idsk-customer-surveys__send-button,
#idsk-customer-surveys__previous-button {
  max-height: 37px;
}
@media (min-width: 40.0625em) {
  #idsk-customer-surveys__send-button,
#idsk-customer-surveys__previous-button {
    max-height: none;
  }
}
.idsk-customer-surveys__buttons {
  padding-top: 10px;
}
.idsk-customer-surveys__buttons .govuk-button {
  width: auto;
}
.idsk-customer-surveys__step .govuk-body {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-customer-surveys__step .govuk-body {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-customer-surveys__step .govuk-body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-customer-surveys__step .govuk-body {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-customer-survey--line {
  border-top: 1px solid #0b0c0c;
}
.idsk-customer-surveys__logo {
  margin-bottom: 30px;
}
.idsk-customer-surveys__text--bold {
  font-weight: bold;
}
.idsk-customer-surveys__icon--hidden {
  display: none;
}
.idsk-customer-surveys__step .govuk-fieldset__legend {
  border-top: 1px solid #0b0c0c;
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 20px;
  width: 100%;
}
.idsk-character-count .govuk-label {
  visibility: hidden;
  height: 0;
}
@media (min-width: 48.0625em) {
  .idsk-customer-surveys-radios .govuk-radios .govuk-radios__input:hover + .govuk-radios__label::before {
    box-shadow: 0 0 0 10px #bfc1c3;
  }
  .idsk-customer-surveys-radios .govuk-radios .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
    box-shadow: 0 0 0 4px #ffdf0f, 0 0 0 10px #bfc1c3;
  }
  .idsk-customer-surveys-radios .govuk-radios__label {
    padding-left: 0;
  }
  .idsk-customer-surveys-radios .govuk-radios__label::before {
    top: 8px;
    width: 24px;
    height: 24px;
  }
  .idsk-customer-surveys-radios .govuk-radios__label::after {
    top: 15px;
    left: 7px;
    border-width: 5px;
  }
}
.idsk-customer-surveys-text-area {
  margin-top: -25px;
  margin-bottom: 10px;
}
.idsk-customer-surveys-text-area .govuk-textarea {
  height: 150px;
}
@media (min-width: 48.0625em) {
  .idsk-customer-surveys-text-area .govuk-textarea {
    height: 115px;
  }
}
.idsk-customer-surveys-text-area .govuk-textarea:focus {
  width: 97%;
  margin-left: 3px;
}
@media (min-width: 48.0625em) {
  .idsk-customer-surveys-text-area .govuk-textarea:focus {
    width: 99%;
  }
}
.idsk-footer-extended {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  left: 100px;
  background: #dee0e2;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-weight: 400;
}
@media print {
  .idsk-footer-extended {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-footer-extended {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-footer-extended.idsk-footer-extended--up-button-enabled {
  box-shadow: none;
}
.idsk-footer-extended-inline-list {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 0;
  padding-top: 30px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-inline-list {
    padding-top: 25px;
  }
}
.idsk-footer-extended-description-panel .idsk-footer-extended-inline-list-item {
  display: inline-block;
}
.idsk-footer-extended-inline-list-item {
  display: block;
  margin-right: 15px;
  margin-bottom: 5px;
}
.idsk-footer-extended-list-item {
  display: block;
  margin-bottom: 15px;
}
.idsk-footer-extended-description-panel-top-border {
  border-top: 1px solid #bfc1c3;
}
.idsk-footer-extended-subtitle {
  border-top: 1px solid #bfc1c3;
  padding-top: 7px;
}
#idsk-footer-extended-close-error-form-button:hover,
#idsk-footer-extended-close-help-form-button:hover {
  color: #0b0c0c;
}
.idsk-footer-extended-meta-item {
  margin-right: 15px;
  margin-bottom: 5px;
  margin-left: 0;
}
.idsk-footer-extended-logo {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 30px 0;
  width: 100%;
  max-width: 250px;
}
.idsk-footer-extended-logo img, .idsk-footer-extended-logo svg {
  height: 100%;
  max-height: 150px;
  width: 100%;
}
.idsk-footer-extended-frame {
  display: inline-block;
  width: 100%;
  height: 15px;
  left: 0;
  top: 0;
  color: #0b0c0c;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-frame {
    width: 90%;
  }
}
.idsk-footer-extended-label {
  font-style: normal;
  font-weight: 300;
  color: #0b0c0c;
  text-decoration: underline;
}
.idsk-footer-extended-grid-column {
  padding-bottom: 23px;
}
.idsk-footer-extended-main-content {
  width: 100%;
}
.idsk-footer-extended-main-content .govuk-grid-column-one-half {
  padding: 0;
}
.idsk-footer-extended-main-content ul {
  padding-left: 0;
}
.idsk-footer-extended-main-content .govuk-grid-column-one-third {
  padding-left: 0;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-main-content .govuk-grid-column-one-third {
    padding-left: 20px;
  }
}
.idsk-footer-extended .govuk-heading-m {
  padding-top: 15px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended .govuk-heading-m {
    font-size: 1.39em;
  }
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended .govuk-heading-m {
    font-size: 1.5em;
  }
}
.idsk-footer-extended-feedback-content {
  background-color: #ffffff;
  width: 100%;
  border-top: 5px solid #0065b3;
  border-bottom: 5px solid #0065b3;
  background-clip: border-box;
  background-color: #ffffff;
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-content {
    border-top: 10px solid #0065b3;
    border-bottom: 10px solid #0065b3;
  }
}
.idsk-footer-extended-feedback {
  width: 100%;
  background: #0065b3;
}
#idsk-footer-extended-feedback {
  margin: 0 -15px;
}
@media (min-width: 40.0625em) {
  #idsk-footer-extended-feedback {
    height: 70px;
  }
}
@media screen and (min-width: 670px) {
  #idsk-footer-extended-feedback {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}
@media screen and (min-width: 670px) and (min-width: 40.0625em) {
  #idsk-footer-extended-feedback {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media (min-width: 48.0625em) {
  #idsk-footer-extended-feedback {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 48.0625em) {
  #idsk-footer-extended-feedback {
    font-family: sans-serif;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  #idsk-footer-extended-feedback {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 48.0625em) {
  #idsk-footer-extended-feedback {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-footer-extended-feedback-text {
  font-style: normal;
  color: #ffffff;
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-text {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-text {
    font-family: sans-serif;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-text {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-text {
    font-size: 14pt;
    line-height: 1.15;
  }
}
#idsk-footer-extended-feedback-yes-button,
#idsk-footer-extended-feedback-no-button {
  font-weight: bold;
}
.idsk-footer-extended-feedback-text-answers {
  font-style: normal;
  font-weight: normal;
  color: #ffffff;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-family: sans-serif;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-footer-extended-feedback-text-answers {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-footer-extended-logo:focus,
.idsk-footer-extended-logo:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-footer-extended-logo-box {
  text-align: -webkit-center;
  padding-right: 0;
}
_:-ms-fullscreen,
:root .idsk-footer-extended-logo-box {
  margin-top: -26px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-info-links {
    width: 57%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-info-links {
    width: 66.6666%;
  }
}
.idsk-footer-extended-feedback-container.collapsed {
  max-height: 0;
}
.idsk-footer-extended-feedback-button {
  text-align: center;
  color: #0065b3;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-button {
    text-align: left;
  }
}
.idsk-footer-extended-close-button {
  padding-top: 15px;
}
.idsk-footer-extended-help-button {
  background: none;
  border-style: none;
  text-decoration: underline;
  cursor: pointer;
}
#idsk-footer-extended-error-button {
  padding: 0;
  float: right;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 641px) {
  #idsk-footer-extended-error-button {
    float: unset;
  }
}
#idsk-footer-extended-feedback-yes-button:focus,
#idsk-footer-extended-feedback-no-button:focus,
#idsk-footer-extended-error-button:focus,
.idsk-footer-extended-help-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-footer-extended-form-text {
  font-style: normal;
  font-weight: 300;
  color: #0b0c0c;
}
.idsk-footer-extended-display-none {
  display: none;
}
.idsk-footer-extended-display-hidden {
  visibility: hidden;
}
.idsk-footer-extended-feedback-hidden {
  max-height: 0;
  -webkit-transition: max-height 0.1s ease-out;
  transition: max-height 0.1s ease-out;
}
.idsk-footer-extended-open {
  max-height: 619px;
  height: auto;
  -webkit-transition: max-height 0.7s ease-in;
  transition: max-height 0.7s ease-in;
  overflow: hidden;
}
.idsk-footer-extended-feedback-question-info-usefull {
  display: none;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-question-info-usefull {
    display: inline;
  }
}
.idsk-footer-extended-usefull-question-mobile {
  display: revert;
  line-height: 45px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-usefull-question-mobile {
    display: none;
  }
}
.idsk-footer-extended-white-border {
  border-top: 2px solid #ffffff;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-white-border {
    border-top: none;
  }
}
.idsk-footer-extended-feedback-question-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: -webkit-fill-available;
}
.idsk-footer-extended-help-form-header-mobile {
  padding: 0;
}
#idsk-footer-extended-heart {
  text-align: center;
}
@media (min-width: 40.0625em) {
  #idsk-footer-extended-heart {
    text-align: left;
  }
}
.idsk-footer-extended .idsk-button {
  width: auto;
}
#idsk-footer-extended-close-help-form-button,
#idsk-footer-extended-close-error-form-button {
  float: right;
  margin-top: -3px;
}
.idsk-footer-extended-write-us-button {
  float: right;
  padding-top: 15px;
}
.idsk-footer-extended-feedback-question-container .govuk-grid-column-one-third {
  padding-right: 0;
}
.idsk-footer-extended-close-button-mobile {
  width: 25%;
  padding-top: 20px;
  display: inline;
}
@media screen and (min-width: 600px) {
  .idsk-footer-extended-close-button-mobile {
    width: 50%;
  }
}
.idsk-footer-extended-close-button-tablet {
  display: none;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-close-button-tablet {
    display: inline;
    padding-top: 19px;
  }
}
.idsk-footer-extended-usefull-answers-mobile {
  float: right;
  padding-top: 13px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-usefull-answers-mobile {
    padding-top: 0;
  }
}
@media screen and (min-width: 868px) {
  .idsk-footer-extended-usefull-answers-mobile {
    padding-right: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .idsk-footer-extended-usefull-answers-mobile {
    padding-right: 12%;
  }
}
@media (min-width: 40.0625em) {
  _:-ms-fullscreen,
:root .idsk-footer-extended-usefull-answers-mobile {
    display: inline;
  }
  .idsk-footer-extended {
    margin-right: 0;
  }
}
.idsk-footer-extended-display-hidden .idsk-footer-extended-feedback-container {
  max-height: 0;
}
.idsk-footer-extended-feedback-container {
  overflow: hidden;
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-container {
    margin: 0;
    padding: 25px 0;
  }
}
#idsk-footer-extended-help-form .idsk-button {
  margin-top: 15px;
  width: auto;
}
.idsk-footer-extended-feedback-container .govuk-textarea:focus {
  width: 98%;
  margin-left: 3px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-container .govuk-textarea:focus {
    margin-left: 0;
    width: 100%;
  }
}
.idsk-footer-extended-feedback-container .govuk-select:focus {
  margin-left: 3px;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-container .govuk-select:focus {
    margin-left: 0;
  }
}
.idsk-footer-extended-main-content .govuk-grid-column-two-thirds,
.idsk-footer-extended-main-content .govuk-grid-column-full {
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-description-panel .govuk-grid-column-two-thirds {
    padding: 0;
  }
}
.idsk-footer-extended-heart {
  display: none;
}
.idsk-footer-extended-heart-visible {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  font-weight: bold;
  display: block;
  line-height: 40px;
}
@media print {
  .idsk-footer-extended-heart-visible {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-heart-visible {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-footer-extended-heart-visible {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-heart-visible {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
    margin-top: -5px;
    font-weight: bold;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-footer-extended-heart-visible {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .idsk-footer-extended-heart-visible {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-footer-extended-heart-visible {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-footer-extended-heart--svg {
  display: none;
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-heart--svg {
    display: unset;
    margin-bottom: -2px;
  }
}
.idsk-footer-extended-answers-form {
  float: right;
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-answers-form {
    padding-right: 15%;
  }
}
.idsk-footer-extended-feedback-container .govuk-textarea,
.idsk-footer-extended-feedback-container .govuk-hint,
.idsk-footer-extended-feedback-container .govuk-label,
.idsk-footer-extended-feedback-container .govuk-select {
  font-weight: 300;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
@media print {
  .idsk-footer-extended-feedback-container .govuk-textarea,
.idsk-footer-extended-feedback-container .govuk-hint,
.idsk-footer-extended-feedback-container .govuk-label,
.idsk-footer-extended-feedback-container .govuk-select {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback-container .govuk-textarea,
.idsk-footer-extended-feedback-container .govuk-hint,
.idsk-footer-extended-feedback-container .govuk-label,
.idsk-footer-extended-feedback-container .govuk-select {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-footer-extended-feedback-container .govuk-textarea,
.idsk-footer-extended-feedback-container .govuk-hint,
.idsk-footer-extended-feedback-container .govuk-label,
.idsk-footer-extended-feedback-container .govuk-select {
    font-size: 14pt;
    line-height: 1.2;
  }
}
#idsk-footer-extended-close-help-form-button,
#idsk-footer-extended-close-error-form-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
}
@media print {
  #idsk-footer-extended-close-help-form-button,
#idsk-footer-extended-close-error-form-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  #idsk-footer-extended-close-help-form-button,
#idsk-footer-extended-close-error-form-button {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media print {
  #idsk-footer-extended-close-help-form-button,
#idsk-footer-extended-close-error-form-button {
    font-size: 12pt;
    line-height: 1.2;
  }
}
.idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  font-size: 14px;
}
@media print {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media print {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-size: 12pt;
    line-height: 1.2;
  }
}
@media screen and (min-width: 670px) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}
@media screen and (min-width: 670px) and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media (min-width: 48.0625em) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-family: sans-serif;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-footer-extended-feedback button,
.idsk-footer-extended-feedback-question-info-usefull {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-footer-extended-up-button-div {
  height: 40px;
  width: 100%;
  background-color: #ffffff;
}
@media (min-width: 40.0625em) {
  .idsk-footer-extended-up-button-div {
    height: 45px;
  }
  @supports (-moz-appearance: none) {
    .idsk-footer-extended-up-button-div {
      height: 44px;
    }
  }
}
.idsk-footer-extended-up-button-a {
  float: right;
}
.idsk-footer-extended__up-button-svg {
  padding: 5px 5px 0 0;
}
.idsk-footer-extended .govuk-link:link {
  color: #0b0c0c;
}
.idsk-footer-extended .govuk-link:visited {
  color: #4c2c92;
}
.idsk-footer-extended .govuk-link:hover {
  color: #003078;
}
.idsk-footer-extended .govuk-link:active {
  color: #0b0c0c;
}
#footer-extended-up-button {
  display: none;
}
@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.idsk-footer-extended__feedback-info {
  display: none;
}
.idsk-header-web {
  z-index: 9999;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
.idsk-header-web__flag {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/flag.svg") no-repeat center;
  mask: url("/assets/images/header-web/flag.svg") no-repeat center;
  display: inline-block;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 16px;
  width: 14px;
}
.idsk-header-web__link-arrow {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/navigation-arrow.svg") no-repeat center;
  mask: url("/assets/images/header-web/navigation-arrow.svg") no-repeat center;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
.idsk-header-web__link-arrow-mobile {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/navigation-arrow-mobile.svg") no-repeat center;
  mask: url("/assets/images/header-web/navigation-arrow-mobile.svg") no-repeat center;
  display: inline;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 13px;
  height: 8px;
  float: right;
}
.idsk-header-web__warning-icon {
  background-color: #d0190f;
  -webkit-mask: url("/assets/images/header-web/warning.svg") no-repeat center;
  mask: url("/assets/images/header-web/warning.svg") no-repeat center;
  border-radius: 100%;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 2px 10px -2px 0;
}
.idsk-header-web__menu-open {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/menu.svg") no-repeat center;
  mask: url("/assets/images/header-web/menu.svg") no-repeat center;
  display: inline-block;
  width: 13px;
  height: 13px;
}
.idsk-header-web__menu-close {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/close.svg") no-repeat center;
  mask: url("/assets/images/header-web/close.svg") no-repeat center;
  display: inline-block;
  width: 13px;
  height: 13px;
}
@media (max-width: 48.0525em) {
  .idsk-header-web {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
  }
  .idsk-header-web__scrolling-wrapper {
    max-height: 100vh;
    overflow: auto;
  }
}
/* SLOVAK TRICOLOR */
.idsk-header-web__tricolor {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(33.3%, #ffffff), color-stop(33.3%, #003183), color-stop(66.6%, #003183), color-stop(66.6%, #d0190f), to(#d0190f));
  background-image: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 33.3%, #003183 33.3%, #003183 66.6%, #d0190f 66.6%, #d0190f 100%);
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 33.3%, #003183 33.3%, #003183 66.6%, #d0190f 66.6%, #d0190f 100%);
  /* equivalent to (to right, white, white 50%, black 50%, black) */
  background-size: 150px 100%;
  background-repeat: repeat;
}
/* BRAND BAR */
.idsk-header-web__brand {
  background-color: #003078;
  color: #ffffff;
  /* language selector */
}
.idsk-header-web__brand .govuk-body-s,
.idsk-header-web__brand .govuk-link {
  color: #ffffff;
}
.idsk-header-web__brand .govuk-grid-column-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.idsk-header-web__brand-gestor {
  float: left;
}
.idsk-header-web__brand-gestor .govuk-width-container {
  position: absolute;
  width: 100vw;
}
.idsk-header-web__brand-gestor .govuk-body-s {
  display: inline-block;
}
.idsk-header-web__brand-gestor .govuk-body-s,
.idsk-header-web__brand-gestor .govuk-link {
  margin: 10px 0;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__brand-gestor .govuk-body-s,
.idsk-header-web__brand-gestor .govuk-link {
    margin: 11px 0;
  }
}
.idsk-header-web__brand-gestor .govuk-link:focus {
  color: #0b0c0c;
}
.idsk-header-web__brand-gestor .govuk-link:focus .idsk-header-web__link-arrow {
  background-color: #0b0c0c;
}
.idsk-header-web__brand-gestor .idsk-header-web__link-arrow {
  background-color: #ffffff;
}
.idsk-header-web__brand-gestor .idsk-header-web__flag {
  background-color: #ffffff;
  margin: 12px 10px 12px 0;
  float: left;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__brand-gestor .idsk-header-web__flag {
    height: 15px;
    width: 12px;
  }
}
.idsk-header-web__brand-gestor-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}
@media print {
  .idsk-header-web__brand-gestor-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__brand-gestor-button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header-web__brand-gestor-button {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header-web__brand-gestor-button:hover {
  text-decoration: underline;
}
.idsk-header-web__brand-gestor-button:focus, .idsk-header-web__brand-gestor-button:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-web__brand-gestor-button:focus .idsk-header-web__link-arrow, .idsk-header-web__brand-gestor-button:active .idsk-header-web__link-arrow {
  background-color: #0b0c0c;
}
.idsk-header-web__brand-gestor-button--active .idsk-header-web__link-arrow {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 48.0525em) {
  .idsk-header-web__brand-gestor .idsk-header-web__brand-gestor-text {
    display: none;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header-web__brand-gestor .idsk-header-web__brand-gestor-text--mobile {
    display: none;
  }
}
.idsk-header-web__brand-dropdown {
  overflow: hidden;
  display: none;
  position: relative;
}
.idsk-header-web__brand-dropdown .govuk-link:focus {
  color: #0b0c0c;
}
.idsk-header-web__brand-dropdown .govuk-width-container {
  margin: 0;
  width: 93vw;
}
.idsk-header-web__brand-dropdown .govuk-body-s:first-child {
  font-weight: 700;
  margin: 20px 0 0;
}
.idsk-header-web__brand-dropdown .govuk-body-s:last-child {
  margin-bottom: 20px;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__brand-dropdown .govuk-body-s:first-child,
.idsk-header-web__brand-dropdown .govuk-body-s:last-child {
    margin: 0;
  }
  .idsk-header-web__brand-dropdown .govuk-grid-column-one-half:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .idsk-header-web__brand-dropdown .govuk-grid-column-one-half:last-child {
    padding-bottom: 20px;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-header-web__brand-dropdown .govuk-grid-column-one-half:last-child {
    padding-top: 20px;
  }
}
.idsk-header-web__brand-dropdown--active {
  display: initial;
}
.idsk-header-web__brand-spacer {
  display: none;
  height: 190px;
}
@media (max-width: 40.0525em) {
  .idsk-header-web__brand-spacer {
    height: 280px;
  }
}
@media (min-width: 40.0625em) and (max-width: 48.0525em) {
  .idsk-header-web__brand-spacer {
    height: 202px;
  }
}
.idsk-header-web__brand-spacer--active {
  display: initial;
}
.idsk-header-web__brand-language {
  float: right;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-header-web__brand-language {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__brand-language {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-web__brand-language {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-header-web__brand-language .idsk-header-web__link-arrow {
  background-color: #ffffff;
}
.idsk-header-web__brand-language--active .idsk-header-web__brand-language-list {
  display: block;
  position: absolute;
  z-index: 2;
  width: 150px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
@media (max-width: 40.0525em) {
  .idsk-header-web__brand-language--active .idsk-header-web__brand-language-list {
    right: 0;
    width: 130px;
    position: absolute;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__brand-language--active .idsk-header-web__brand-language-list {
    width: 140px;
  }
}
.idsk-header-web__brand-language--active .idsk-header-web__link-arrow {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.idsk-header-web__brand-language-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  background: none;
  border: none;
  color: #ffffff;
  margin: 9px 0 9px 0;
  cursor: pointer;
}
@media print {
  .idsk-header-web__brand-language-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__brand-language-button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header-web__brand-language-button {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header-web__brand-language-button:hover {
  text-decoration: underline;
}
.idsk-header-web__brand-language-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-web__brand-language-button:focus .idsk-header-web__link-arrow {
  background-color: #0b0c0c;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__brand-language-button {
    margin-top: 8px;
    font-size: 18px;
  }
}
.idsk-header-web__brand-language-list {
  display: none;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  text-align: left;
  background-color: #ffffff;
}
.idsk-header-web__brand-language-list-item-link {
  display: block;
  text-decoration: none;
  padding: 10px;
}
.idsk-header-web__brand-language-list-item-link--selected {
  text-decoration: underline;
  font-weight: 700;
}
.idsk-header-web__brand-language-list-item-link:link, .idsk-header-web__brand-language-list-item-link:visited {
  color: #0b0c0c;
}
.idsk-header-web__brand-language-list-item-link:not(:focus):hover {
  text-decoration: underline;
}
.idsk-header-web__brand--light {
  background-color: #f3f2f1;
}
.idsk-header-web__brand--light .govuk-body-s,
.idsk-header-web__brand--light .govuk-link,
.idsk-header-web__brand--light .idsk-header-web__brand-language-button,
.idsk-header-web__brand--light .idsk-header-web__brand-gestor-button {
  color: #0b0c0c;
}
.idsk-header-web__brand--light .idsk-header-web__link-arrow,
.idsk-header-web__brand--light .idsk-header-web__flag {
  background-color: #0b0c0c;
}
/* MAIN SECTION */
.idsk-header-web__main {
  background-color: #ffffff;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__main .govuk-grid-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .idsk-header-web__main .govuk-grid-row .govuk-grid-column-two-thirds {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .idsk-header-web__main .govuk-grid-column-one-third-from-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.idsk-header-web__main--buttons {
  display: inline-block;
}
.idsk-header-web__main--login .idsk-header-web__main--login-profilebtn,
.idsk-header-web__main--login .idsk-header-web__main--login-logoutbtn {
  display: none;
}
.idsk-header-web__main--login-action {
  display: none;
  overflow: auto;
  margin-bottom: 20px;
}
.idsk-header-web__main--login-action-profile-img {
  height: 28px;
}
.idsk-header-web__main--login-action-text {
  margin-left: 10px;
}
.idsk-header-web__main--login-action-text-user-name {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-weight: 700;
  margin-bottom: 5px;
}
@media print {
  .idsk-header-web__main--login-action-text-user-name {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__main--login-action-text-user-name {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header-web__main--login-action-text-user-name {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header-web__main--login-action .govuk-link {
  color: #0b0c0c;
}
.idsk-header-web__main--login--loggedIn .idsk-header-web__main--login-loginbtn {
  display: none;
}
.idsk-header-web__main--login--loggedIn a.idsk-header-web__main--login-profilebtn,
.idsk-header-web__main--login--loggedIn a.idsk-header-web__main--login-logoutbtn {
  display: initial;
}
.idsk-header-web__main--login--loggedIn .idsk-header-web__main--login-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__main--login--loggedIn .idsk-header-web__main--login-action-text:last-child div {
    display: none;
  }
  .idsk-header-web__main--login--loggedIn button.idsk-header-web__main--login-profilebtn,
.idsk-header-web__main--login--loggedIn button.idsk-header-web__main--login-logoutbtn {
    display: initial;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header-web__main--login {
    display: inline-block;
  }
  .idsk-header-web__main--login-action {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 10px;
  }
}
.idsk-header-web__main-headline {
  margin: 28px 0;
}
.idsk-header-web__main-headline > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.idsk-header-web__main-headline > a:focus, .idsk-header-web__main-headline > a:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-web__main-headline-logo {
  height: 50px;
  margin-right: 15px;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__main-headline-logo {
    height: 40px;
  }
}
.idsk-header-web__main-headline .govuk-heading-m {
  margin: 0;
  color: #003078;
}
.idsk-header-web__main-headline-menu-button {
  display: none;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__main-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0;
  }
  .idsk-header-web__main-headline a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
  }
  .idsk-header-web__main-headline .govuk-heading-m {
    margin: 0;
    float: none;
  }
  .idsk-header-web__main-headline-menu-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    width: auto;
    float: right;
    border: 1px solid #0b0c0c;
    box-shadow: none;
    color: #0b0c0c;
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 6px;
    margin: 0;
  }
  .idsk-header-web__main-headline-menu-button:hover {
    background-color: #ffffff;
    color: #0b0c0c;
  }
  .idsk-header-web__main-headline-menu-button:focus, .idsk-header-web__main-headline-menu-button:active {
    outline: 3px solid transparent;
    color: #0b0c0c;
    background-color: #ffdf0f;
    box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
    text-decoration: none;
  }
  .idsk-header-web__main-headline-menu-button .idsk-header-web__menu-open,
.idsk-header-web__main-headline-menu-button .idsk-header-web__menu-close {
    margin-left: 15px;
    margin-bottom: -1px;
  }
  .idsk-header-web__main-headline-menu-button .idsk-header-web__menu-close {
    display: none;
  }
  .idsk-header-web__main-headline-menu-button-service {
    border: none;
  }
  .idsk-header-web__main-headline-menu-button--active .idsk-header-web__menu-open {
    display: none;
  }
  .idsk-header-web__main-headline-menu-button--active .idsk-header-web__menu-close {
    display: inline-block;
  }
  .idsk-header-web__main-headline-menu-button--active img {
    display: none;
  }
  .idsk-header-web__main-headline-menu-button-service .idsk-header-web__menu-close {
    margin: 0;
    padding: 5px 10px;
  }
}
.idsk-header-web__main-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* search bar */
}
.idsk-header-web__main-action-search {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  outline: 1px solid #0b0c0c;
  margin: 30px 0;
}
.idsk-header-web__main-action-search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background-color: #626a6e;
  -webkit-mask: url("/assets/images/header-web/search-input-close.svg") no-repeat center;
  mask: url("/assets/images/header-web/search-input-close.svg") no-repeat center;
  display: inline-block;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 17px;
  width: 17px;
}
@media print {
  .idsk-header-web__main-action-search {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__main-action-search {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-web__main-action-search {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header-web__main-action-search {
    width: 300px;
  }
}
.idsk-header-web__main-action-search .govuk-input {
  border: none;
  height: 40px;
  padding: 8px 12px;
}
.idsk-header-web__main-action-search .govuk-input:focus {
  z-index: 2;
}
.idsk-header-web__main-action-search .govuk-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  width: 44px;
  font-size: 17px;
  margin: 0;
  padding-top: 7px;
  padding-left: 10px;
  box-shadow: none;
  background-color: #0065b3;
}
.idsk-header-web__main-action-search .govuk-button::before {
  bottom: -2px;
}
.idsk-header-web__main-action-search .govuk-button:hover {
  background-color: #003078;
}
.idsk-header-web__main-action-search .govuk-button:active {
  top: 0;
}
.idsk-header-web__main-action .idsk-header-web__main--buttons {
  float: right;
}
.idsk-header-web__main-action .idsk-button {
  margin: 29px 0 30px 10px;
  padding: 9px 10px 8px;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__main-action {
    float: none;
  }
  .idsk-header-web__main-action-search {
    display: none;
  }
}
@media (max-width: 48.0525em) {
  .idsk-header-web__main--buttons {
    display: none;
  }
}
/* NAV BAR */
.idsk-header-web__nav {
  background-color: #ffffff;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__nav--mobile {
    display: none;
  }
}
.idsk-header-web__nav--divider {
  height: 1px;
  background-color: #dee0e2;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__nav--divider {
    display: none;
  }
}
.idsk-header-web__nav .idsk-header-web__main--buttons,
.idsk-header-web__nav .idsk-header-web__main-action-search {
  display: none;
}
.idsk-header-web__nav .idsk-header-web__main--buttons {
  margin-top: 20px;
}
.idsk-header-web__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-list-item {
    display: inline-block;
    border: none;
    float: left;
  }
}
.idsk-header-web__nav-list-item-link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  padding: 15px 15px 10px 15px;
  white-space: nowrap;
  text-decoration: none;
  color: #0b0c0c;
  display: inline-block;
}
@media print {
  .idsk-header-web__nav-list-item-link {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__nav-list-item-link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-web__nav-list-item-link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-header-web__nav-list-item-link .idsk-header-web__link-arrow-mobile {
  display: none;
}
.idsk-header-web__nav-list-item-link .idsk-header-web__nav-list-item-link-arrow {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/navigation-arrow.svg") no-repeat center;
  mask: url("/assets/images/header-web/navigation-arrow.svg") no-repeat center;
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
.idsk-header-web__nav-list-item-link:link, .idsk-header-web__nav-list-item-link:hover, .idsk-header-web__nav-list-item-link:visited {
  color: #0b0c0c;
}
.idsk-header-web__nav-list-item-link:focus, .idsk-header-web__nav-list-item-link:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-list-item-link:focus, .idsk-header-web__nav-list-item-link:active {
    box-shadow: 0 0 #ffdf0f, 0 -4px #0b0c0c inset;
  }
}
.idsk-header-web__nav-list-item-link:hover {
  text-decoration: underline;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-list-item--active {
    background-color: #003078;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:link, .idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:hover, .idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:visited {
    color: #ffffff;
  }
}
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:focus, .idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:active {
  color: #0b0c0c;
}
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:focus .idsk-header-web__link-arrow,
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:focus .idsk-header-web__link-arrow-mobile, .idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:active .idsk-header-web__link-arrow,
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link:active .idsk-header-web__link-arrow-mobile {
  background-color: #0b0c0c;
}
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-list-item-link .idsk-header-web__link-arrow {
  background-color: #ffffff;
}
.idsk-header-web__nav-list-item--active .idsk-header-web__link-arrow,
.idsk-header-web__nav-list-item--active .idsk-header-web__link-arrow-mobile {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-submenu,
.idsk-header-web__nav-list-item--active .idsk-header-web__nav-submenulite {
  display: block;
}
@media (min-width: 40.0625em) and (max-width: 48.0525em) {
  .idsk-header-web__nav-list-item--active .govuk-grid-row {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.idsk-header-web__nav--dark {
  background-color: #003078;
}
.idsk-header-web__nav--dark .idsk-header-web__link-arrow {
  background-color: #ffffff;
}
.idsk-header-web__nav--dark .idsk-header-web__nav-list-item-link {
  color: #ffffff;
}
.idsk-header-web__nav--dark .idsk-header-web__nav-list-item-link:focus, .idsk-header-web__nav--dark .idsk-header-web__nav-list-item-link:active {
  color: #0b0c0c;
}
.idsk-header-web__nav--dark .idsk-header-web__nav-list-item-link:focus .idsk-header-web__link-arrow, .idsk-header-web__nav--dark .idsk-header-web__nav-list-item-link:active .idsk-header-web__link-arrow {
  background-color: #0b0c0c;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__nav {
    border-top: none;
  }
  .idsk-header-web__nav-bar--buttons {
    border-bottom: 2px solid #dee0e2;
  }
  .idsk-header-web__nav .idsk-header-web__main--buttons,
.idsk-header-web__nav .idsk-header-web__main-action-search {
    display: block;
  }
  .idsk-header-web__nav .idsk-header-web__main-action-search {
    margin: 0;
  }
  .idsk-header-web__nav .idsk-header-web__main-action-search .govuk-input {
    width: calc(100% - 44px);
  }
  .idsk-header-web__nav .idsk-header-web__main-action-search .govuk-button {
    float: right;
  }
  .idsk-header-web__nav-list {
    margin: 0 -15px;
    padding: 15px 0;
  }
  .idsk-header-web__nav-list-item-link {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
  }
  .idsk-header-web__nav-list-item-link .idsk-header-web__link-arrow {
    display: none;
  }
  .idsk-header-web__nav-list-item-link .idsk-header-web__link-arrow-mobile {
    margin-top: 10px;
    display: inline;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-web__nav-list {
    margin-left: -30px;
    margin-right: -30px;
  }
  .idsk-header-web__nav-list-item-link {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* NAVIGATION - submenu */
.idsk-header-web__nav-submenu {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  display: none;
}
.idsk-header-web__nav-submenu:after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-submenu {
    background-color: #003078;
  }
}
.idsk-header-web__nav-submenu-list {
  background-color: #003078;
  list-style-type: none;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-submenu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0;
  }
  .idsk-header-web__nav-submenu-list-item {
    width: 33.33%;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .idsk-header-web__nav-submenu-list-item-link {
    width: 100%;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .idsk-header-web__nav-submenu-list-item-link:focus, .idsk-header-web__nav-submenu-list-item-link:active {
    box-shadow: 0 0 #ffdf0f, 0 -4px #0b0c0c inset;
  }
}
.idsk-header-web__nav-submenu-list-item-link {
  padding: 12px 20px 13px 15px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.idsk-header-web__nav-submenu-list-item-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.idsk-header-web__nav-submenu-list-item-link:link, .idsk-header-web__nav-submenu-list-item-link:visited {
  color: #ffffff;
}
.idsk-header-web__nav-submenu-list-item-link:hover {
  text-decoration: underline;
}
.idsk-header-web__nav-submenu-list-item-link:focus, .idsk-header-web__nav-submenu-list-item-link:active {
  color: #0b0c0c;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__nav-submenu {
    position: initial;
    width: initial;
  }
  .idsk-header-web__nav-submenu-list {
    padding: 0;
    background-color: #ffffff;
  }
  .idsk-header-web__nav-submenu-list-item-link {
    padding: 15px 20px 15px 30px;
    font-size: 18px;
    font-weight: 700;
  }
  .idsk-header-web__nav-submenu-list-item-link:link, .idsk-header-web__nav-submenu-list-item-link:visited {
    color: #0b0c0c;
  }
  .idsk-header-web__nav-submenu .govuk-grid-column-one-quarter {
    padding: 0;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) and (max-width: 48.0525em) {
  .idsk-header-web__nav-submenu-list-item-link {
    padding-left: 50px;
  }
}
/* NAVIGATION - submenulite */
.idsk-header-web__nav-submenulite {
  position: relative;
  left: 0;
  z-index: 1;
  display: none;
}
.idsk-header-web__nav-submenulite-list {
  background-color: #003078;
  list-style-type: none;
}
@media (min-width: 48.0625em) {
  .idsk-header-web__nav-submenulite-list {
    position: absolute;
    padding: 15px 0;
    width: 250px;
  }
}
.idsk-header-web__nav-submenulite-list-item-link {
  padding: 10px 20px 10px 15px;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
}
.idsk-header-web__nav-submenulite-list-item-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.idsk-header-web__nav-submenulite-list-item-link:link, .idsk-header-web__nav-submenulite-list-item-link:visited {
  color: #ffffff;
}
.idsk-header-web__nav-submenulite-list-item-link:focus, .idsk-header-web__nav-submenulite-list-item-link:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-web__nav-submenulite-list-item-link:hover {
  text-decoration: underline;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__nav-submenulite {
    position: initial;
  }
  .idsk-header-web__nav-submenulite-list {
    padding: 0;
    background-color: #ffffff;
  }
  .idsk-header-web__nav-submenulite .idsk-header-web__nav-submenulite-list-item-link {
    padding: 15px 20px 15px 30px;
    font-size: 18px;
    font-weight: 700;
  }
  .idsk-header-web__nav-submenulite .idsk-header-web__nav-submenulite-list-item-link:link, .idsk-header-web__nav-submenulite .idsk-header-web__nav-submenulite-list-item-link:visited {
    color: #0b0c0c;
  }
}
@media (min-width: 40.0625em) and (max-width: 48.0525em) {
  .idsk-header-web__nav-submenulite .idsk-header-web__nav-submenulite-list-item-link {
    padding-left: 50px;
  }
}
/* BANNER SECTION */
.idsk-header-web__banner {
  padding: 15px 0;
  background-color: #ffdf0f;
}
.idsk-header-web__banner--warning {
  background-color: #f3f2f1;
}
.idsk-header-web__banner--warning .idsk-header-web__banner-close:focus, .idsk-header-web__banner--warning .idsk-header-web__banner-close:focus-visible, .idsk-header-web__banner--warning .idsk-header-web__banner-close:active {
  outline: none;
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-web__banner-title {
  margin: 0;
  font-weight: 700;
  display: inline-block;
}
.idsk-header-web__banner .govuk-grid-column-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.idsk-header-web__banner--hide {
  display: none;
}
@media (max-width: 48.0525em) {
  .idsk-header-web__banner--scrolled {
    display: none;
  }
}
.idsk-header-web__banner-close {
  background-color: transparent;
  border: none;
  padding: 5px 5px 2px 5px;
  cursor: pointer;
}
.idsk-header-web__banner-close:focus, .idsk-header-web__banner-close:focus-visible, .idsk-header-web__banner-close:active {
  outline: 1px solid #0b0c0c;
}
.idsk-warning-text {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  margin-bottom: 20px;
  background-color: #ffdf0f;
  padding: 10px 0;
}
@media print {
  .idsk-warning-text {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-warning-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-warning-text {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .idsk-warning-text {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .idsk-warning-text {
    margin-bottom: 30px;
  }
}
.idsk-warning-text__text {
  display: block;
  font-weight: bold;
}
.idsk-warning-text__text a:focus,
.idsk-warning-text__text a:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-warning-text--info {
  background-color: #dee0e2;
}
.idsk-warning-text--info .idsk-warning-text__icon {
  display: none;
}
.idsk-search-results {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 -15px;
}
@media print {
  .idsk-search-results {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results {
    margin: 0;
  }
  .idsk-search-results .govuk-grid-column-one-quarter {
    width: 32%;
  }
  .idsk-search-results .govuk-grid-column-three-quarters {
    width: 68%;
  }
}
.idsk-search-results .govuk-heading-xl {
  margin-bottom: 30px;
}
.idsk-search-results .govuk-select {
  max-width: 150px;
  width: -webkit-fill-available;
  background-color: #ffffff;
  width: -moz-available;
}
@media (min-width: 23.5625em) {
  .idsk-search-results .govuk-select {
    max-width: 190px;
  }
}
@media (orientation: landscape) {
  .idsk-search-results .govuk-select {
    max-width: 100%;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filter.govuk-grid-column-one-quarter {
    width: 37%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__filter.govuk-grid-column-one-quarter {
    width: 32%;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content.govuk-grid-column-three-quarters {
    width: 63%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__content.govuk-grid-column-three-quarters {
    width: 68%;
  }
}
.idsk-search-results__filter {
  display: none;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filter {
    display: block;
    padding-top: 15px;
  }
}
.idsk-search-results__filter.idsk-search-results-filter__filter-panel {
  display: block;
}
.idsk-search-results__filter .govuk-form-group {
  margin-bottom: 0;
}
.idsk-search-results__content .govuk-grid-column-two-quarters {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  padding: 10px 0;
  margin: 0 15px;
  width: auto;
  border-bottom: 2px solid #0b0c0c;
}
@media print {
  .idsk-search-results__content .govuk-grid-column-two-quarters {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content .govuk-grid-column-two-quarters {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results__content .govuk-grid-column-two-quarters {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content .govuk-grid-column-two-quarters {
    padding: 0;
    margin: 0;
    border-bottom: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    float: right;
  }
}
.idsk-search-results--order {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results--order {
    width: 100%;
    float: left;
  }
}
@media print {
  .idsk-search-results--order {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results--order {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results--order {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results--order {
    display: none;
  }
}
.idsk-search-results--order .govuk-label {
  padding-right: 10px;
  margin-top: 10px;
}
.idsk-search-results--order .govuk-form-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fill-available;
  margin-bottom: -15px;
  border-bottom: 1px solid #0b0c0c;
  padding-bottom: 15px;
}
.idsk-search-results__content .govuk-grid-column-two-quarters span {
  padding-top: 9px;
  padding-right: 5px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content .govuk-grid-column-two-quarters span {
    padding-top: 7px;
  }
}
.idsk-search-results__per-page {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: right;
}
.idsk-search-results__filter-panel--mobile {
  width: 100%;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filter-panel--mobile {
    width: 45%;
  }
}
.idsk-search-results__filters__button {
  color: #0065b3;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  text-decoration: none;
  position: relative;
  border-width: 0;
  color: #0065b3;
  background: none;
  cursor: pointer;
  padding-left: 0;
  padding-right: 20px;
  padding-top: 5px;
}
@media print {
  .idsk-search-results__filters__button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filters__button {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .idsk-search-results__filters__button {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.idsk-search-results__filters__button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filters__button {
    display: none;
  }
}
.idsk-search-results__filters__button::after {
  border-style: solid;
  border-width: 3px 3px 0 0;
  color: #0065b3;
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  position: relative;
  top: 8px;
  right: -13px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: top;
}
.idsk-search-results__content .govuk-grid-column-two-quarters .govuk-form-group {
  margin-bottom: 5px;
}
.idsk-search-results__content__picked-filters {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-left: 15px;
  padding-left: 0;
  padding-right: 0;
}
@media print {
  .idsk-search-results__content__picked-filters {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__picked-filters {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results__content__picked-filters {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__picked-filters {
    border-top: 2px solid #0b0c0c;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results--border {
    border-bottom: 2px solid #0b0c0c;
  }
}
.idsk-search-results__picked-topic,
.idsk-search-results__picked-content-type,
.idsk-search-results__picked-date {
  font-weight: normal;
  border: 1px solid #0b0c0c;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 10px 10px 0;
  display: inline-block;
  cursor: pointer;
}
.idsk-search-results__picked-topic:focus,
.idsk-search-results__picked-content-type:focus,
.idsk-search-results__picked-date:focus {
  box-shadow: inset 0 0 0 2px;
  border: solid 1px #0b0c0c;
  outline: 3px solid #ffdf0f;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__picked-topic,
.idsk-search-results__picked-content-type,
.idsk-search-results__picked-date {
    margin: 5px;
    padding: 5px;
  }
}
.idsk-search-results__list .idsk-search-results__search__input {
  margin-bottom: 10px;
}
.idsk-search-results__content__page-changer {
  border-top: 1px solid #626a6e;
  padding-top: 15px;
  margin-left: 15px;
  width: 95%;
  display: inline-block;
  position: relative;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__page-changer {
    width: 96.5%;
    border-top: 2px solid #0b0c0c;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__content__page-changer {
    width: 97.6%;
  }
}
.idsk-search-results--half-width {
  width: 50%;
}
.idsk-search-results__button--back,
.idsk-search-results__button--forward,
.idsk-search-results__button--forward__mobile,
.idsk-search-results__button--back__mobile,
.idsk-search-results__button--back-to-results,
.idsk-search-results__button--turn-filters-off {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  border-width: 0;
  color: #0065b3;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: underline;
  text-align: right;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .idsk-search-results__button--back,
.idsk-search-results__button--forward,
.idsk-search-results__button--forward__mobile,
.idsk-search-results__button--back__mobile,
.idsk-search-results__button--back-to-results,
.idsk-search-results__button--turn-filters-off {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__button--back,
.idsk-search-results__button--forward,
.idsk-search-results__button--forward__mobile,
.idsk-search-results__button--back__mobile,
.idsk-search-results__button--back-to-results,
.idsk-search-results__button--turn-filters-off {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results__button--back,
.idsk-search-results__button--forward,
.idsk-search-results__button--forward__mobile,
.idsk-search-results__button--back__mobile,
.idsk-search-results__button--back-to-results,
.idsk-search-results__button--turn-filters-off {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .idsk-search-results__button--back,
.idsk-search-results__button--forward,
.idsk-search-results__button--forward__mobile,
.idsk-search-results__button--back__mobile,
.idsk-search-results__button--back-to-results,
.idsk-search-results__button--turn-filters-off {
    font-family: sans-serif;
  }
}
.idsk-search-results__button--back:focus,
.idsk-search-results__button--forward:focus,
.idsk-search-results__button--forward__mobile:focus,
.idsk-search-results__button--back__mobile:focus,
.idsk-search-results__button--back-to-results:focus,
.idsk-search-results__button--turn-filters-off:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-search-results__button--back:link,
.idsk-search-results__button--forward:link,
.idsk-search-results__button--forward__mobile:link,
.idsk-search-results__button--back__mobile:link,
.idsk-search-results__button--back-to-results:link,
.idsk-search-results__button--turn-filters-off:link {
  color: #0065b3;
}
.idsk-search-results__button--back:visited,
.idsk-search-results__button--forward:visited,
.idsk-search-results__button--forward__mobile:visited,
.idsk-search-results__button--back__mobile:visited,
.idsk-search-results__button--back-to-results:visited,
.idsk-search-results__button--turn-filters-off:visited {
  color: #4c2c92;
}
.idsk-search-results__button--back:hover,
.idsk-search-results__button--forward:hover,
.idsk-search-results__button--forward__mobile:hover,
.idsk-search-results__button--back__mobile:hover,
.idsk-search-results__button--back-to-results:hover,
.idsk-search-results__button--turn-filters-off:hover {
  color: #003078;
}
.idsk-search-results__button--back:active,
.idsk-search-results__button--forward:active,
.idsk-search-results__button--forward__mobile:active,
.idsk-search-results__button--back__mobile:active,
.idsk-search-results__button--back-to-results:active,
.idsk-search-results__button--turn-filters-off:active {
  color: #0b0c0c;
}
.idsk-search-results__button--back:focus,
.idsk-search-results__button--forward:focus,
.idsk-search-results__button--forward__mobile:focus,
.idsk-search-results__button--back__mobile:focus,
.idsk-search-results__button--back-to-results:focus,
.idsk-search-results__button--turn-filters-off:focus {
  color: #0b0c0c;
}
.idsk-search-results__list::-webkit-scrollbar {
  width: 7px;
}
.idsk-search-results__list::-webkit-scrollbar-thumb {
  background-color: #626a6e;
  border-radius: 4px;
  border: 1px solid #626a6e;
  width: 8px;
}
.idsk-search-results__list::-webkit-scrollbar-track {
  background: white; /* color of the tracking area */
}
.idsk-search-results__button--turn-filters-off {
  text-align: left;
  margin: 15px 0;
  padding: 0;
  width: auto;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__button--turn-filters-off {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__subcards.govuk-grid-column-one-half {
    width: 100%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__subcards.govuk-grid-column-one-half {
    width: 50%;
  }
}
.idsk-search-results__subcards .idsk-heading-basic-variant {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-bottom: 15px;
  padding-top: 0;
}
@media print {
  .idsk-search-results__subcards .idsk-heading-basic-variant {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__subcards .idsk-heading-basic-variant {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-search-results__subcards .idsk-heading-basic-variant {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-search-results__subcards .idsk-heading-basic-variant::before {
  content: "";
  border-bottom: 1px solid #0b0c0c;
  position: absolute;
  width: 20px;
  margin-left: -15px;
  margin-top: 8px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__subcards .idsk-heading-basic-variant {
    font-weight: bold;
  }
  .idsk-search-results__subcards .idsk-heading-basic-variant::before {
    content: none;
  }
}
.idsk-search-results__subcards .idsk-card-title {
  padding-left: 10px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__subcards .idsk-card-title {
    padding-left: 0;
  }
}
.idsk-search-results__subcards .idsk-body-basic-variant {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: none;
}
@media print {
  .idsk-search-results__subcards .idsk-body-basic-variant {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__subcards .idsk-body-basic-variant {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-search-results__subcards .idsk-body-basic-variant {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__subcards .idsk-body-basic-variant {
    display: block;
  }
}
.idsk-search-results__content__picked-filters.govuk-grid-column-full {
  width: 96%;
  padding-bottom: 50px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__picked-filters.govuk-grid-column-full {
    width: 96.5%;
    padding-bottom: 0;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__content__picked-filters.govuk-grid-column-full {
    width: 97.6%;
  }
}
.idsk-search-results__show-results__button {
  padding-top: 15px;
  margin-top: 15px;
  box-shadow: 0 -4px 3px -3px #626a6e;
  position: fixed;
  bottom: 0;
  z-index: 20;
  background: #ffffff;
  width: calc(100% + 4px);
  margin-left: -3px;
  padding-left: 15px;
  padding-right: 20px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__show-results__button {
    display: none;
  }
}
.idsk-search-results__button--back-to-results {
  padding-top: 5px;
  float: right;
}
.idsk-search-results__button--back {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  margin-left: -15px;
}
.idsk-search-results__button--forward {
  right: 0;
  padding-right: 0;
  position: absolute;
  margin-bottom: 0;
}
.idsk-search-results__button__svg--previous {
  padding-right: 10px;
}
.idsk-search-results__button__svg--next {
  padding-left: 10px;
}
.idsk-search-results__page-number,
.idsk-search-results__page-number--mobile {
  text-align: center;
  overflow: auto;
  padding-top: 15px;
}
.idsk-intro-block__search span {
  display: block;
}
.idsk-search-results__filter .idsk-intro-block__search {
  height: 40px;
  padding-bottom: 10px;
  padding-top: 5px;
  display: none;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filter .idsk-intro-block__search {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: -webkit-fill-available;
    width: -moz-available;
  }
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__search__button {
  height: 40px;
  width: 40px;
  z-index: 1;
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
  height: 40px;
}
@media (orientation: landscape) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}
@media print and (orientation: landscape) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-family: sans-serif;
  }
}
@media (orientation: landscape) and (min-width: 40.0625em) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (orientation: landscape) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input::-webkit-input-placeholder {
  color: #0b0c0c;
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input::-moz-placeholder {
  color: #0b0c0c;
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input:-ms-input-placeholder {
  color: #0b0c0c;
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input::-ms-input-placeholder {
  color: #0b0c0c;
}
.idsk-search-results__filter .idsk-intro-block__search .idsk-intro-block__input::placeholder {
  color: #0b0c0c;
}
.idsk-search-results__page-number--mobile {
  padding-top: 15px;
  padding-bottom: 10px;
}
.idsk-search-results__page-number--mobile span {
  padding: 0 20px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__page-number--mobile {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results--grey {
    background-color: #f3f2f1;
  }
}
.idsk-search-results__content__picked-filters__topics,
.idsk-search-results__content__picked-filters__content-type,
.idsk-search-results__content__picked-filters__date {
  min-height: 40px;
  margin-top: 30px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__picked-filters__topics,
.idsk-search-results__content__picked-filters__content-type,
.idsk-search-results__content__picked-filters__date {
    margin-top: -0.5px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__before-date,
.idsk-search-results__after-date {
    padding-left: 5px;
  }
}
.idsk-search-results__after-date {
  padding-right: 5px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__after-date {
    padding-right: 0;
  }
}
.idsk-search-results__content__picked-filters__date span:first-child {
  display: block;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__picked-filters__date span:first-child {
    display: contents;
  }
}
.idsk-search-results__content__picked-filters__content-type .idsk-search-results__text,
.idsk-search-results__content__picked-filters__topics .idsk-search-results__text,
.idsk-search-results__content__picked-filters__date .idsk-search-results__before-date,
.idsk-search-results__content__picked-filters__date .idsk-search-results__after-date {
  font-weight: bold;
}
.idsk-search-results__text {
  display: block;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__text {
    display: unset;
    padding-left: 5px;
  }
}
.idsk-search-results__content__picked-filters__topics span,
.idsk-search-results__content__picked-filters__content-type span,
.idsk-search-results__content__picked-filters__date span,
.idsk-search-results__content__picked-filters__topics button,
.idsk-search-results__content__picked-filters__content-type button,
.idsk-search-results__content__picked-filters__date button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  background: none;
}
@media print {
  .idsk-search-results__content__picked-filters__topics span,
.idsk-search-results__content__picked-filters__content-type span,
.idsk-search-results__content__picked-filters__date span,
.idsk-search-results__content__picked-filters__topics button,
.idsk-search-results__content__picked-filters__content-type button,
.idsk-search-results__content__picked-filters__date button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content__picked-filters__topics span,
.idsk-search-results__content__picked-filters__content-type span,
.idsk-search-results__content__picked-filters__date span,
.idsk-search-results__content__picked-filters__topics button,
.idsk-search-results__content__picked-filters__content-type button,
.idsk-search-results__content__picked-filters__date button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results__content__picked-filters__topics span,
.idsk-search-results__content__picked-filters__content-type span,
.idsk-search-results__content__picked-filters__date span,
.idsk-search-results__content__picked-filters__topics button,
.idsk-search-results__content__picked-filters__content-type button,
.idsk-search-results__content__picked-filters__date button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-search-results--hidden {
  visibility: hidden;
}
.idsk-search-results__content__number-of-results {
  display: none;
}
@media (min-width: 48.0625em) {
  .idsk-search-results__content__number-of-results {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1111111111;
    display: block;
    padding-top: 5px;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-search-results__content__number-of-results {
    font-family: sans-serif;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-search-results__content__number-of-results {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-search-results__content__number-of-results {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-search-results__link-panel--span {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  font-size: 14px;
  line-height: 25px;
  padding-right: 30px;
  color: #0b0c0c;
  float: right;
  padding-top: 0;
}
@media print {
  .idsk-search-results__link-panel--span {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel--span {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media print {
  .idsk-search-results__link-panel--span {
    font-size: 12pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel--span {
    padding-right: 0;
    padding-top: 5px;
    margin-bottom: -10px;
  }
}
.idsk-search-results__date__span {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
@media print {
  .idsk-search-results__date__span {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__date__span {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-search-results__date__span {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-search-results__date__span__example {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  white-space: nowrap;
  color: #626a6e;
}
@media print {
  .idsk-search-results__date__span__example {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__date__span__example {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-search-results__date__span__example {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-search-results__filter-header-panel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 2px solid #0b0c0c;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-fill-available;
  padding: 0 0 15px 0;
}
.idsk-search-results__filter-header-panel .govuk-heading-xl {
  margin-bottom: 0;
  padding-left: 0;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__filter-header-panel {
    display: none;
  }
}
.idsk-search-results__content.govuk-grid-column-three-quarters {
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__content.govuk-grid-column-three-quarters {
    padding: 0 15px;
  }
}
.idsk-search-results__link-panel__title {
  text-decoration: none;
  color: #0065b3;
  overflow: overlay;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.idsk-search-results__link-panel__title:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-search-results--invisible {
  display: none;
}
.idsk-search-results--invisible__mobile,
.idsk-header-extended.idsk-search-results--invisible__mobile {
  display: none;
}
@media (min-width: 40.0625em) {
  .idsk-search-results--invisible__mobile,
.idsk-header-extended.idsk-search-results--invisible__mobile {
    display: block;
  }
}
.idsk-search-results--visible__mobile {
  display: block;
}
@media (min-width: 40.0625em) {
  .idsk-search-results--visible__mobile {
    display: none;
  }
}
.idsk-search-results--visible__mobile--inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 40.0625em) {
  .idsk-search-results--visible__mobile--inline {
    display: none;
  }
}
.idsk-intro-block__search.idsk-search-results--visible__mobile--inline.idsk-search-results--invisible__mobile {
  display: none;
}
.idsk-search-results--visible {
  display: block;
}
.idsk-search-results__link-panel-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  cursor: pointer;
  color: #0065b3;
  height: inherit;
}
@media print {
  .idsk-search-results__link-panel-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-search-results__link-panel-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel-button {
    display: grid;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__link-panel-button {
    display: unset;
  }
}
#datum-od {
  margin-bottom: 10px;
}
.idsk-search-results--expand .idsk-search-results__list {
  max-height: 300px;
  overflow-y: auto;
  position: relative;
  overflow-x: hidden;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin-bottom: -5px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bfc1c3;
}
@media (min-width: 48.0625em) {
  .idsk-search-results--expand .idsk-search-results__list {
    padding-left: 10px;
  }
}
.idsk-search-results--expand .idsk-search-results__list #datum-od.govuk-input,
.idsk-search-results--expand .idsk-search-results__list #datum-do.govuk-input {
  width: 90%;
  display: block;
}
@media (min-width: 40.0625em) {
  .idsk-search-results--expand .idsk-search-results__list #datum-od.govuk-input,
.idsk-search-results--expand .idsk-search-results__list #datum-do.govuk-input {
    width: 98%;
  }
}
.idsk-search-results--expand .idsk-search-results__link-panel-button {
  border-bottom: none;
}
.idsk-search-results--expand .idsk-search-results__link-panel-button:focus .idsk-search-results__link-panel__title {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-search-results--expand .idsk-search-results__link-panel-button::before {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (min-width: 40.0625em) {
  .idsk-search-results--expand .idsk-search-results__link-panel-button::before {
    top: 25px;
  }
}
.idsk-search-results__list {
  cursor: text;
}
.idsk-search-results__list .idsk-search-results__search__input {
  width: 97%;
  background-image: url("/assets/images/loupe.svg");
  background-repeat: no-repeat;
  background-position: 7px 10px;
  background-size: 17px;
  padding-left: 30px;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__list .idsk-search-results__search__input {
    width: 96%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-results__list .idsk-search-results__search__input {
    width: 240px;
    max-width: 96%;
  }
}
.idsk-search-results--order__dropdown .govuk-select:focus {
  margin-bottom: 3px;
}
.idsk-search-results__link-panel {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 60px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.idsk-search-results__link-panel-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  outline: none;
  background-color: #ffffff;
  border: none;
  text-align: left;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #bfc1c3;
}
@media print {
  .idsk-search-results__link-panel-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-results__link-panel-button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel-button {
    padding: 15px 35px 15px 5px;
  }
}
.idsk-search-results__link-panel-button:disabled {
  cursor: text;
}
.idsk-search-results__link-panel-button:disabled .idsk-search-results__link-panel__title {
  color: #bfc1c3;
  cursor: text;
}
.idsk-search-results__link-panel-button:disabled::before {
  color: #bfc1c3;
}
.idsk-search-results__link-panel-button::before {
  border-style: solid;
  border-width: 3px 3px 0 0;
  color: #0b0c0c;
  content: "";
  display: inline-block;
  height: 0.45em;
  right: 10px;
  position: absolute;
  top: 23px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: top;
  width: 0.45em;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel-button::before {
    top: 24px;
  }
}
.idsk-search-results__link-panel-button:focus::before {
  color: #0b0c0c;
}
@media (min-width: 40.0625em) {
  .idsk-search-results__link-panel {
    height: 65px;
  }
}
.idsk-search-results__link {
  text-decoration: underline;
}
.idsk-search-results__link-number {
  display: inline-block;
  text-decoration: underline;
}
.idsk-search-results__link-number:focus {
  text-decoration: none;
}
.idsk-search-results__link-panel-button:focus {
  outline: none;
}
.idsk-search-results__link-panel-button:focus .idsk-search-results__link-panel__title {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-search-results__link-panel:focus {
  outline: none;
}
.idsk-search-results__list {
  background-color: white;
  padding-top: 0;
  padding-left: 5px;
  max-height: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  overflow-y: hidden;
}
.idsk-search-results__list-item--active::before {
  top: 5px;
}
.idsk-option-select-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.idsk-option-select-filter .govuk-checkboxes__label::before {
  width: 44px;
  height: 44px;
  top: 2px;
}
@media (min-width: 40.0625em) {
  .idsk-option-select-filter .govuk-checkboxes__label::before {
    width: 30px;
    height: 30px;
  }
}
.idsk-option-select-filter .govuk-checkboxes__label::after {
  top: 15px;
  left: 12px;
  width: 21px;
  box-sizing: border-box;
  height: 11px;
  border-width: 0 0 3px 3px;
}
@media (min-width: 40.0625em) {
  .idsk-option-select-filter .govuk-checkboxes__label::after {
    top: 11px;
    left: 8px;
    width: 15px;
    box-sizing: border-box;
    height: 9px;
    border-width: 0 0 3px 3px;
  }
}
.idsk-option-select-filter .govuk-checkboxes__label {
  padding: 15px 20px 5px;
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .idsk-option-select-filter .govuk-checkboxes__label {
    padding: 5px 10px 5px;
    margin-bottom: 0;
  }
}
.idsk-option-select-filter .govuk-checkboxes--small .govuk-checkboxes__item {
  margin-bottom: 10px;
}
.idsk-skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: block;
  padding: 10px 15px;
}
.idsk-skip-link:active, .idsk-skip-link:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  white-space: inherit !important;
}
@media print {
  .idsk-skip-link {
    font-family: sans-serif;
  }
}
.idsk-skip-link:link, .idsk-skip-link:visited {
  color: #0b0c0c;
}
@media print {
  .idsk-skip-link:link, .idsk-skip-link:visited {
    color: #000000;
  }
}
.idsk-skip-link:hover {
  color: rgba(11, 12, 12, 0.99);
}
.idsk-skip-link:active, .idsk-skip-link:focus {
  color: #0b0c0c;
}
@media print {
  .idsk-skip-link:active, .idsk-skip-link:focus {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .idsk-skip-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-skip-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@supports (padding: max(calc(0px))) {
  .idsk-skip-link {
    padding-right: max(15px, calc(15px + env(safe-area-inset-right)));
    padding-left: max(15px, calc(15px + env(safe-area-inset-left)));
  }
}
.idsk-skip-link:focus {
  outline: 3px solid #ffdf0f;
  background-color: #ffdf0f;
}
@media (max-width: 48.0525em) {
  .idsk-skip-link--sticky:focus {
    position: fixed !important;
    z-index: 11;
    width: 100% !important;
  }
}
.idsk-card {
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 40.0625em) {
  .idsk-card {
    margin-bottom: 30px;
  }
}
.idsk-card-simple {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  padding: 0;
  float: none;
}
@media (min-width: 40.0625em) {
  .idsk-card-simple {
    width: 33.3333%;
    float: left;
  }
}
.idsk-card-title {
  cursor: pointer;
  margin: 0;
}
.idsk-card-title:hover {
  color: #0b0c0c;
}
.idsk-card-img {
  width: 100%;
}
.idsk-card-img-hero {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  padding: 0;
  float: none;
}
@media (min-width: 40.0625em) {
  .idsk-card-img-hero {
    width: 50%;
    float: left;
  }
}
@media (min-width: 40.0625em) {
  .idsk-card-img-hero {
    padding-right: 15px;
  }
}
.idsk-card-img-secondary-horizontal, .idsk-card-img-profile-horizontal {
  box-sizing: border-box;
  float: left;
  padding-right: 15px;
  padding-bottom: 15px;
  width: 100%;
}
@media (min-width: 40.0625em) {
  .idsk-card-img-secondary-horizontal, .idsk-card-img-profile-horizontal {
    padding-bottom: 0;
    width: 33%;
  }
}
.idsk-card-meta-container {
  padding-bottom: 10px;
}
.idsk-card-meta {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #626a6e;
  display: inline;
  text-decoration: none;
}
@media print {
  .idsk-card-meta {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-card-meta {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-card-meta {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-card-meta-date:after {
  content: " - ";
}
.idsk-card-meta-tag:after {
  content: " | ";
}
.idsk-card-meta .govuk-link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #626a6e;
}
@media print {
  .idsk-card-meta .govuk-link {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-card-meta .govuk-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-card-meta .govuk-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-card-meta .govuk-link:visited {
  color: #4c2c92;
}
.idsk-card-meta-container span:last-child:after {
  content: "";
}
.idsk-card-content-hero {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  float: none;
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-card-content-hero {
    width: 50%;
    float: left;
  }
}
@media (min-width: 40.0625em) {
  .idsk-card-content-hero {
    padding: 0 0 0 15px;
  }
}
.idsk-card-content-profile-horizontal {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  float: none;
}
@media (min-width: 40.0625em) {
  .idsk-card-content-profile-horizontal {
    width: 66.6666%;
    float: left;
  }
}
.idsk-card-content-secondary-horizontal {
  width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  float: left;
}
@media (min-width: 40.0625em) {
  .idsk-card-content-secondary-horizontal {
    width: 67%;
    padding-left: 15px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-card-content-secondary-horizontal {
    padding-left: 15px;
  }
}
.idsk-heading {
  padding-bottom: 10px;
}
@media (min-width: 40.0625em) {
  .idsk-heading {
    padding-bottom: 10px;
  }
}
.idsk-heading-basic-variant, .idsk-heading-simple {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-heading-basic-variant, .idsk-heading-simple {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-heading-basic-variant, .idsk-heading-simple {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-heading-basic-variant, .idsk-heading-simple {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-heading-basic, .idsk-heading-hero, .idsk-heading-secondary-horizontal {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
}
@media print {
  .idsk-heading-basic, .idsk-heading-hero, .idsk-heading-secondary-horizontal {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-heading-basic, .idsk-heading-hero, .idsk-heading-secondary-horizontal {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-heading-basic, .idsk-heading-hero, .idsk-heading-secondary-horizontal {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-heading-secondary {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-heading-secondary {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-heading-secondary {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-heading-secondary {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (max-width: 48.0525em) {
  .idsk-heading-secondary {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1111111111;
  }
}
@media print and (max-width: 48.0525em) {
  .idsk-heading-secondary {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-heading-secondary {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print and (max-width: 48.0525em) {
  .idsk-heading-secondary {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-heading-profile-vertical, .idsk-heading-profile-horizontal {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  text-decoration: underline;
}
@media print {
  .idsk-heading-profile-vertical, .idsk-heading-profile-horizontal {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-heading-profile-vertical, .idsk-heading-profile-horizontal {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-heading-profile-vertical, .idsk-heading-profile-horizontal {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-body {
  margin-top: 0;
  margin-bottom: 0;
}
.idsk-body-basic, .idsk-body-basic-variant, .idsk-body-hero, .idsk-body-secondary-horizontal {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-body-basic, .idsk-body-basic-variant, .idsk-body-hero, .idsk-body-secondary-horizontal {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-body-basic, .idsk-body-basic-variant, .idsk-body-hero, .idsk-body-secondary-horizontal {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-body-basic, .idsk-body-basic-variant, .idsk-body-hero, .idsk-body-secondary-horizontal {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-body-secondary {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
@media print {
  .idsk-body-secondary {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-body-secondary {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-body-secondary {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (max-width: 48.0525em) {
  .idsk-body-secondary {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (max-width: 48.0525em) {
  .idsk-body-secondary {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-body-secondary {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (max-width: 48.0525em) {
  .idsk-body-secondary {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-body-profile-vertical, .idsk-body-profile-horizontal {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  padding-top: 10px;
  padding-bottom: 15px;
}
@media print {
  .idsk-body-profile-vertical, .idsk-body-profile-horizontal {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-body-profile-vertical, .idsk-body-profile-horizontal {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-body-profile-vertical, .idsk-body-profile-horizontal {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-body-profile-vertical, .idsk-body-profile-horizontal {
    padding-top: 10px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-body-profile-vertical, .idsk-body-profile-horizontal {
    padding-bottom: 20px;
  }
}
.idsk-quote {
  padding-right: 30px;
  padding-left: 30px;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-top: 0;
}
@media (min-width: 40.0625em) {
  .idsk-quote {
    padding-right: 50px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-quote {
    padding-left: 50px;
  }
}
@media print {
  .idsk-quote {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-quote {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-quote {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-quote-right {
  float: right;
}
.idsk-crossroad-1 {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-crossroad-1 {
    width: 100%;
    float: left;
  }
}
@media (min-width: 20em) {
  .idsk-crossroad-2 {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    padding: 0;
  }
}
@media (min-width: 20em) and (min-width: 40.0625em) {
  .idsk-crossroad-2 {
    width: 100%;
    float: left;
  }
}
@media (orientation: landscape) {
  .idsk-crossroad-2 {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    padding: 0;
  }
}
@media (orientation: landscape) and (min-width: 40.0625em) {
  .idsk-crossroad-2 {
    width: 50%;
    float: left;
  }
}
@media (min-width: 48.0625em) {
  .idsk-crossroad-2 {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    padding: 0;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-crossroad-2 {
    width: 50%;
    float: left;
  }
}
@media (min-width: 48.0625em) {
  .idsk-crossroad-2:first-child {
    padding-right: 15px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-crossroad-2:nth-child(2) {
    padding-left: 15px;
  }
}
.idsk-crossroad-title {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0065b3;
  text-decoration: underline;
  cursor: pointer;
}
@media print {
  .idsk-crossroad-title {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-crossroad-title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-crossroad-title {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-crossroad-title:hover {
  color: #003078;
}
.idsk-crossroad-title:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-crossroad-title:visited {
  color: #4c2c92;
}
.idsk-crossroad-subtitle {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-top: 10px;
  padding-bottom: 15px;
  margin: 0;
  color: #626a6e;
}
@media print {
  .idsk-crossroad-subtitle {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-crossroad-subtitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-crossroad-subtitle {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .idsk-crossroad-subtitle {
    padding-top: 10px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-crossroad-subtitle {
    padding-bottom: 20px;
  }
}
.idsk-crossroad-line {
  color: #bfc1c3;
  border-color: #bfc1c3;
  background-color: #bfc1c3;
  height: 1px;
  border: 0;
  border-top: 1px;
  margin-bottom: 10px;
}
.idsk-crossroad__uncollapse-div {
  text-align: center;
}
.idsk-crossroad__colapse--button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  background: none;
  border: none;
  width: -webkit-fill-available;
  text-align: center;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #0065b3;
  width: auto;
  height: 100%;
  cursor: pointer;
  display: inline-block;
}
@media print {
  .idsk-crossroad__colapse--button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-crossroad__colapse--button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-crossroad__colapse--button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-crossroad__colapse--button::before, .idsk-crossroad__colapse--button::after {
  border-style: solid;
  border-width: 0.1em 0.1em 0 0;
  color: #0065b3;
  content: "";
  display: inline-block;
  height: 0.45em;
  right: 25px;
  top: 15px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: top;
  width: 0.45em;
}
@media (min-width: 40.0625em) {
  .idsk-crossroad__colapse--button::before, .idsk-crossroad__colapse--button::after {
    right: 50px;
    top: 20px;
  }
}
.idsk-crossroad__colapse--button::after {
  margin: 5px 0 0 20px;
}
.idsk-crossroad__colapse--button::before {
  margin: 5px 22px 0 0;
}
.idsk-crossroad__colapse--button:focus, .idsk-crossroad__colapse--button:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
  width: auto;
  padding: 0 12px;
}
.idsk-crossroad__colapse--button-show:focus, .idsk-crossroad__colapse--button-show:active {
  padding: 0;
}
.idsk-crossroad__collapse--arrow .idsk-crossroad__colapse--button::before,
.idsk-crossroad__collapse--arrow .idsk-crossroad__colapse--button::after {
  margin: 11px 12px 0 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.idsk-crossroad__collapse--shadow {
  position: relative;
  box-shadow: 5px -35px 30px 40px #ffffff;
}
@media (min-width: 48.0625em) {
  .idsk-crossroad__collapse--shadow {
    box-shadow: 5px -10px 70px 40px #ffffff;
  }
}
.idsk-crossroad__uncollapse-hide--mobile,
.idsk-crossroad__item--one-column-hide {
  display: none;
}
@media (orientation: landscape) {
  .idsk-crossroad__item--two-columns-hide-mobile.idsk-crossroad__item--two-columns-hide,
.idsk-crossroad__uncollapse-hide--desktop {
    display: none;
  }
}
@media (min-width: 48.0625em) {
  .idsk-crossroad__item--two-columns-hide-mobile.idsk-crossroad__item--two-columns-hide,
.idsk-crossroad__uncollapse-hide--desktop {
    display: none;
  }
}
.idsk-crossroad__item--two-columns-hide-mobile.idsk-crossroad__item--two-columns-show {
  display: block;
}
@media (min-width: 20em) {
  .idsk-crossroad__item--two-columns-hide-mobile {
    display: none;
  }
}
@media (orientation: landscape) {
  .idsk-crossroad__item--two-columns-hide-mobile {
    display: unset;
  }
}
@media (min-width: 48.0625em) {
  .idsk-crossroad__item--two-columns-hide-mobile {
    display: unset;
  }
}
@media (min-width: 48.0625em) {
  .idsk-crossroad__item--two-columns-show {
    display: block;
  }
}
.idsk-feedback__content {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-feedback__content {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-feedback__content {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-feedback__content {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-feedback__content .govuk-radios {
  line-height: 0;
}
.idsk-feedback__content .govuk-heading-l {
  padding-bottom: 50px;
  margin-bottom: 0;
}
.idsk-feedback__buttons {
  padding-top: 10px;
}
@media (min-width: 48.0625em) {
  .idsk-feedback__content .govuk-radios .govuk-radios__input:hover + .govuk-radios__label::before {
    box-shadow: 0 0 0 10px #bfc1c3;
  }
  .idsk-feedback__content .govuk-radios .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
    box-shadow: 0 0 0 4px #ffdf0f, 0 0 0 10px #bfc1c3;
  }
  .idsk-feedback__content .govuk-radios__label {
    padding-left: 0;
  }
  .idsk-feedback__content .govuk-radios__label::before {
    top: 8px;
    width: 24px;
    height: 24px;
  }
  .idsk-feedback__content .govuk-radios__label::after {
    top: 15px;
    left: 7px;
    border-width: 5px;
  }
}
.idsk-feedback__buttons .govuk-button {
  width: auto;
}
#idsk-feedback__question-bar {
  padding-top: 30px;
}
#idsk-feedback__question-bar .govuk-heading-m {
  margin-bottom: -10px;
}
.idsk-feedback__subtitle {
  margin-bottom: 30px;
}
#idsk-feedback__send-button {
  margin-right: 20px;
}
.idsk-feedback--hidden {
  display: none;
}
.idsk-feedback--invisible {
  visibility: hidden;
}
.idsk-feedback--animation {
  max-height: 0;
  -webkit-transition: max-height 0.7s ease-out;
  transition: max-height 0.7s ease-out;
}
#idsk-feedback__question-bar .govuk-textarea {
  height: 150px;
}
@media (min-width: 48.0625em) {
  #idsk-feedback__question-bar .govuk-textarea {
    height: 115px;
  }
}
#idsk-feedback__question-bar .govuk-textarea:focus {
  width: 97%;
  margin-left: 3px;
}
@media (min-width: 48.0625em) {
  #idsk-feedback__question-bar .govuk-textarea:focus {
    width: 99%;
  }
}
.idsk-feedback--open {
  max-height: 619px;
  height: auto;
  -webkit-transition: max-height 0.7s ease-in;
  transition: max-height 0.7s ease-in;
  overflow: hidden;
}
.idsk-in-page-navigation {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 15px;
  padding: 0;
  width: 100%;
  z-index: 10;
}
@media print {
  .idsk-in-page-navigation {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-in-page-navigation {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-in-page-navigation {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-in-page-navigation {
    margin-bottom: 30px;
    margin-left: -15px;
    padding: 0;
    width: calc(100% + 30px);
  }
}
@media (min-width: 48.0625em) {
  .idsk-in-page-navigation {
    width: 25%;
    padding-left: 30px;
  }
}
.idsk-in-page-navigation--sticky {
  position: fixed;
  top: 70px;
  width: 100%;
}
@media (min-width: 48.0625em) {
  .idsk-in-page-navigation--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 25%;
    overflow: auto;
    height: 100vh;
  }
}
.idsk-in-page-navigation__title {
  margin-bottom: 20px;
  font-weight: bold;
}
.idsk-in-page-navigation__link-panel,
.idsk-in-page-navigation__link-number {
  display: none;
}
.idsk-in-page-navigation__list {
  list-style-type: none;
  margin: 0;
  padding: 0 15px;
}
.idsk-in-page-navigation__list:after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 40.0625em) {
  .idsk-in-page-navigation__list {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-in-page-navigation__list {
    padding: 0;
  }
}
.idsk-in-page-navigation__list-item {
  color: #0065b3;
  margin-bottom: 20px;
  padding-left: 15px;
}
.idsk-in-page-navigation__list-item--active {
  font-weight: bold;
  position: relative;
}
.idsk-in-page-navigation__list-item--active::before {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 5px 0 5px 8.66px;
  border-left-color: inherit;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
}
.idsk-in-page-navigation__link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  text-decoration: none;
}
@media print {
  .idsk-in-page-navigation__link {
    font-family: sans-serif;
  }
}
.idsk-in-page-navigation__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-in-page-navigation__link:link {
  color: #0065b3;
}
.idsk-in-page-navigation__link:visited {
  color: #4c2c92;
}
.idsk-in-page-navigation__link:hover {
  color: #003078;
}
.idsk-in-page-navigation__link:active {
  color: #0b0c0c;
}
.idsk-in-page-navigation__link:focus {
  color: #0b0c0c;
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation--expand .idsk-in-page-navigation__list {
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
    padding-top: 15px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .idsk-in-page-navigation--expand .idsk-in-page-navigation__link-panel-button::before {
    top: 20px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-in-page-navigation--expand .idsk-in-page-navigation__link-panel-button::before {
    top: 25px;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__title {
    display: none;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__link-panel {
    background: #003078;
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%;
  }
  .idsk-in-page-navigation__link-panel-button {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1111111111;
    background: #003078;
    border: none;
    color: #ffffff;
    font-weight: bold;
    padding: 15px 50px 15px 15px;
    text-align: left;
    width: 100%;
    background: #003078;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media print and (max-width: 48.0525em) {
  .idsk-in-page-navigation__link-panel-button {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-in-page-navigation__link-panel-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print and (max-width: 48.0525em) {
  .idsk-in-page-navigation__link-panel-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-in-page-navigation__link-panel-button {
    padding: 15px 80px 15px 30px;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__link-panel-button:focus {
    outline: 3px solid transparent;
    color: #0b0c0c;
    background-color: #ffdf0f;
    box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
    text-decoration: none;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__link-panel-button::before {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    color: #ffffff;
    content: "";
    display: inline-block;
    height: 0.45em;
    right: 25px;
    position: absolute;
    top: 15px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    vertical-align: top;
    width: 0.45em;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .idsk-in-page-navigation__link-panel-button::before {
    right: 50px;
    top: 20px;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__link-panel-button:focus::before {
    color: #0b0c0c;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__link {
    text-decoration: underline;
  }
  .idsk-in-page-navigation__link-number {
    display: inline-block;
    text-decoration: underline;
  }
  .idsk-in-page-navigation__link-number:focus {
    text-decoration: none;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__list {
    background-color: white;
    border-bottom: 4px solid #003078;
    padding-top: 0;
    max-height: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    overflow-y: hidden;
  }
}
@media (max-width: 48.0525em) {
  .idsk-in-page-navigation__list-item--active::before {
    top: 5px;
  }
}
.idsk-intro-block {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media print {
  .idsk-intro-block {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-intro-block {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-intro-block {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-intro-block .govuk-heading-xl {
  margin-bottom: 0;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block .govuk-heading-xl {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 700;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.0416666667;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-intro-block .govuk-heading-xl {
    font-family: sans-serif;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-intro-block .govuk-heading-xl {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print and (min-width: 48.0625em) {
  .idsk-intro-block .govuk-heading-xl {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.idsk-intro-block .govuk-heading-l {
  margin-bottom: 0;
}
@media (min-width: 40.0625em) {
  .idsk-intro-block .govuk-heading-l {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1111111111;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-intro-block .govuk-heading-l {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .idsk-intro-block .govuk-heading-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 40.0625em) {
  .idsk-intro-block .govuk-heading-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-intro-block .govuk-body {
  margin-bottom: 20px;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block .govuk-body {
    margin-bottom: 50px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-intro-block .govuk-grid-column-one-third-from-desktop {
    width: calc(33.3333% - 50px);
  }
}
.idsk-intro-block .govuk-heading-m {
  font-size: 24px;
  margin-top: 20px;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block .govuk-heading-m.heading-bigger-margin {
    margin-top: 37px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-intro-block > .govuk-grid-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.idsk-search-component {
  margin-bottom: 30px;
}
@media (min-width: 48.0625em) {
  .idsk-search-component {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.idsk-intro-block__list__ul {
  padding-left: 0;
  display: table;
  margin-top: 0;
  margin-bottom: 20px;
}
.idsk-intro-block__list__li {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media print {
  .idsk-intro-block__list__li {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-intro-block__list__li {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-intro-block__list__li {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-intro-block__list__a {
  white-space: nowrap;
}
@media (max-width: 40.0525em) {
  .idsk-intro-block__list__a {
    text-decoration: none;
  }
  .idsk-intro-block__list__a:hover {
    text-decoration: underline;
  }
}
.idsk-intro-block__list__li .govuk-link:active,
.idsk-intro-block__list__li .govuk-link:link {
  color: #626a6e;
}
.idsk-intro-block__side-menu {
  padding: 20px;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block__side-menu {
    margin-left: 35px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-intro-block__side-menu {
    background-color: #dee0e2;
  }
}
@media (max-width: 40.0525em) {
  .idsk-intro-block__side-menu {
    padding: 0 15px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-intro-block__side-menu .govuk-heading-s {
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
}
@media (max-width: 40.0525em) {
  .idsk-intro-block__side-menu .govuk-heading-s {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
  }
}
.idsk-intro-block__side-menu__default__ul {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: contents;
  font-style: normal;
  font-weight: bold;
  text-align: right;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  /* sass / link */
  color: #0065b3;
}
@media print {
  .idsk-intro-block__side-menu__default__ul {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-intro-block__side-menu__default__ul {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-intro-block__side-menu__default__ul {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-intro-block__side-menu__ul {
  float: none;
  padding-bottom: 20px;
  display: contents;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block__side-menu__ul {
    float: right;
    padding-bottom: 0;
  }
}
.idsk-intro-block__side-menu__li {
  padding-bottom: 10px;
}
.idsk-intro-block__side-menu__ul .idsk-intro-block__side-menu__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.idsk-intro-block__side-menu__default__li {
  display: table;
  float: none;
  margin: -20px 0;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block__side-menu__default__li {
    display: contents;
    float: right;
    padding-bottom: 0;
  }
}
#idsk-intro-block__side-menu__title .govuk-heading-l {
  padding-top: 15px;
  margin-bottom: 10px;
}
@media (min-width: 40.0625em) {
  #idsk-intro-block__side-menu__title .govuk-heading-l {
    padding-top: 0;
    margin-top: 10px;
  }
}
.idsk-intro-block__side-menu__default__subtitle {
  padding-top: 25px;
}
#idsk-intro-block__side-menu__title {
  padding-bottom: 15px;
}
@media (min-width: 48.0625em) {
  #idsk-intro-block__side-menu__title {
    margin-top: 5px;
    width: 26%;
    float: right;
  }
}
.idsk-intro-block__side-menu__span {
  padding-top: 15px;
  padding-right: 5px;
}
.idsk-intro-block__bottom-menu__li {
  display: block;
  color: #0b0c0c;
  padding-bottom: 15px;
}
@media (min-width: 48.0625em) {
  .idsk-intro-block__bottom-menu__li {
    display: inline-grid;
    padding-bottom: 0;
    padding-right: 20px;
  }
}
.app-pane-grey .govuk-heading-s {
  color: #0b0c0c;
}
@media (min-width: 48.0625em) {
  div.app-pane-blue {
    background-color: #0065b3;
  }
}
.app-pane-transparent {
  background-color: transparent;
}
@media (min-width: 48.0625em) {
  .app-pane-blue .govuk-heading-l,
.app-pane-blue .govuk-heading-s,
.app-pane-blue .idsk-intro-block__side-menu__a,
.app-pane-blue .idsk-intro-block__side-menu__li {
    color: #ffffff;
  }
  .app-pane-blue .govuk-heading-l:focus,
.app-pane-blue .govuk-heading-s:focus,
.app-pane-blue .idsk-intro-block__side-menu__a:focus,
.app-pane-blue .idsk-intro-block__side-menu__li:focus {
    color: #0b0c0c;
  }
}
.idsk-related-content__line {
  background-color: #003078;
  height: 2px;
  border: 0;
  margin-bottom: 10px;
}
.idsk-related-content__heading {
  margin-bottom: 10px;
}
.idsk-related-content__list > .idsk-related-content__list-item {
  margin-bottom: 10px;
}
.idsk-related-content__link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  color: #0065b3;
}
@media print {
  .idsk-related-content__link {
    font-family: sans-serif;
  }
}
.idsk-related-content__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-related-content__link:link {
  color: #0065b3;
}
.idsk-related-content__link:visited {
  color: #4c2c92;
}
.idsk-related-content__link:hover {
  color: #003078;
}
.idsk-related-content__link:active {
  color: #0b0c0c;
}
.idsk-related-content__link:focus {
  color: #0b0c0c;
}
.idsk-stepper {
  margin-left: 45px;
  position: relative;
}
.idsk-stepper:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 18px;
  left: -46px;
  border-bottom: solid 2px #949494;
}
@media (min-width: 40.0625em) {
  .idsk-stepper:after {
    left: -43px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-stepper:after {
    left: -40px;
  }
}
.idsk-stepper__caption {
  padding-bottom: 15px;
}
.idsk-stepper__caption.govuk-caption-m {
  color: #0b0c0c;
}
.idsk-stepper__subtitle-container {
  width: 100%;
  margin-bottom: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 40.0625em) {
  .idsk-stepper__subtitle-container {
    margin-bottom: 0;
  }
}
.idsk-stepper__subtitle-container .idsk-stepper__subtitle--heading {
  width: 75%;
  padding-top: 0;
}
@media (min-width: 40.0625em) {
  .idsk-stepper__subtitle-container .idsk-stepper__subtitle--heading {
    padding-top: 0;
  }
}
.idsk-stepper__subtitle-container .idsk-stepper__controls {
  width: 25%;
  padding: 0;
}
.idsk-stepper__section,
.idsk-stepper__section-title {
  position: relative;
  min-height: 75px;
}
.idsk-stepper__section:before,
.idsk-stepper__section-title:before {
  content: "";
  position: absolute;
  z-index: 2;
  height: 100%;
  border-left: solid 2px #949494;
  background: #ffffff;
  top: 35px;
  left: -38px;
}
@media (min-width: 40.0625em) {
  .idsk-stepper__section:before,
.idsk-stepper__section-title:before {
    left: -35px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-stepper__section:before,
.idsk-stepper__section-title:before {
    left: -32px;
  }
}
.idsk-stepper__bolder-line .idsk-stepper__section-content .govuk-link:focus:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 18px;
  left: -35px;
  padding-top: 12px;
  border-bottom: solid 2px #0b0c0c;
}
@media (min-width: 40.0625em) {
  .idsk-stepper__bolder-line .idsk-stepper__section-content .govuk-link:focus:before {
    left: -33px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-stepper__bolder-line .idsk-stepper__section-content .govuk-link:focus:before {
    left: -32px;
  }
}
.idsk-stepper__subtitle-container .govuk-heading-m {
  color: #0065b3;
  margin-left: -15px;
  margin-bottom: 20px;
}
.idsk-stepper__section-header .govuk-heading-m {
  color: #0065b3;
  margin-bottom: 0;
}
.idsk-stepper__bolder-line.idsk-stepper__section--expanded.idsk-stepper__section:before {
  border-color: #0b0c0c;
}
.idsk-stepper__bolder-line.idsk-stepper__section--expanded.idsk-stepper__section .idsk-stepper__circle--number {
  border-color: #0b0c0c;
}
.idsk-stepper__section--last-item:before {
  height: calc(100% - 34px);
}
.js-enabled .idsk-stepper__section-header.idsk-stepper__section-subtitle {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  color: #0065b3;
  padding-top: 35px;
  padding-bottom: 20px;
  cursor: text;
}
@media print {
  .js-enabled .idsk-stepper__section-header.idsk-stepper__section-subtitle {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-stepper__section-header.idsk-stepper__section-subtitle {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .js-enabled .idsk-stepper__section-header.idsk-stepper__section-subtitle {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-stepper__circle {
  box-sizing: border-box;
  position: absolute;
  z-index: 5;
  top: 19px;
  left: -50px;
  width: 26px;
  height: 26px;
  color: #0b0c0c;
  background: #ffffff;
  border-radius: 100px;
  text-align: center;
}
@media (min-width: 40.0625em) {
  .idsk-stepper__circle {
    top: 24px;
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-stepper__circle {
    left: -47px;
    top: 24px;
  }
}
.idsk-stepper__circle--letter {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  border: none;
  padding-top: 3px;
}
@media print {
  .idsk-stepper__circle--letter {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-stepper__circle--letter {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-stepper__circle--letter {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-stepper__circle--letter {
    padding-top: 1px;
  }
}
.idsk-stepper__circle--number {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  border: solid 2px #949494;
  padding-top: 3px;
  line-height: 0.9rem;
}
@media print {
  .idsk-stepper__circle--number {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-stepper__circle--number {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-stepper__circle--number {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-stepper__circle--number {
    padding-top: 1px;
    line-height: 1.5rem;
  }
}
.idsk-stepper__section {
  padding-top: 15px;
}
.idsk-stepper__section-header {
  padding-top: 25px;
  padding-bottom: 25px;
}
.idsk-stepper__section-heading {
  margin-top: 0;
  margin-bottom: 0;
}
.idsk-stepper__section-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: inline-block;
  margin-bottom: 0;
  padding-top: 15px;
}
@media print {
  .idsk-stepper__section-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-stepper__section-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-stepper__section-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-stepper__section-summary {
  margin-top: 10px;
  margin-bottom: 0;
}
.idsk-stepper__section-content > :last-child {
  margin-bottom: 0;
}
.js-enabled .idsk-stepper {
  border-bottom: 2px solid #949494;
}
.js-enabled .idsk-stepper__section {
  padding-top: 0;
}
.js-enabled .idsk-stepper__section-content {
  display: none;
  padding-top: 0;
  padding-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-stepper__section-content {
    padding-top: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-stepper__section-content {
    padding-bottom: 15px;
  }
}
.js-enabled .idsk-stepper__section--expanded .idsk-stepper__section-content {
  display: block;
}
.js-enabled .js-enabled .idsk-stepper__open-all {
  text-align: right;
}
.js-enabled .idsk-stepper__open-all {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 0;
  border-width: 0;
  color: #0065b3;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: underline;
  text-align: right;
  height: 50px;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .js-enabled .idsk-stepper__open-all {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-stepper__open-all {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .js-enabled .idsk-stepper__open-all {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .js-enabled .idsk-stepper__open-all {
    font-family: sans-serif;
  }
}
.js-enabled .idsk-stepper__open-all:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.js-enabled .idsk-stepper__open-all:link {
  color: #0065b3;
}
.js-enabled .idsk-stepper__open-all:visited {
  color: #4c2c92;
}
.js-enabled .idsk-stepper__open-all:hover {
  color: #003078;
}
.js-enabled .idsk-stepper__open-all:active {
  color: #0b0c0c;
}
.js-enabled .idsk-stepper__open-all:focus {
  color: #0b0c0c;
}
.js-enabled .idsk-stepper__open-all::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.js-enabled .idsk-stepper__section-header {
  position: relative;
  padding-right: 40px;
  border-top: 2px solid #949494;
  color: #0065b3;
  cursor: pointer;
}
@media (hover: none) {
  .js-enabled .idsk-stepper__section-header:hover {
    box-shadow: inset 0 1 0 0 #0065b3;
  }
}
.js-enabled .idsk-stepper__section-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
  border-width: 0;
  color: #0b0c0c;
  background: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
}
@media print {
  .js-enabled .idsk-stepper__section-button {
    font-family: sans-serif;
  }
}
.js-enabled .idsk-stepper__section-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.js-enabled .idsk-stepper__section-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.js-enabled .idsk-stepper__section-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.js-enabled .idsk-stepper__section-button:hover:not(:focus) {
  text-decoration: underline;
}
@media (hover: none) {
  .js-enabled .idsk-stepper__section-button:hover {
    text-decoration: none;
  }
}
.js-enabled .idsk-stepper__controls {
  text-align: right;
  padding-bottom: 15px;
}
.js-enabled .idsk-stepper__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
}
.js-enabled .idsk-stepper__icon:after,
.js-enabled .idsk-stepper__icon:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 25%;
  margin: auto;
  border: 2px solid transparent;
  background-color: #0b0c0c;
}
.js-enabled .idsk-stepper__icon:before {
  width: 100%;
}
.js-enabled .idsk-stepper__icon:after {
  height: 100%;
}
.js-enabled .idsk-stepper__section--expanded .idsk-stepper__icon:after {
  content: " ";
  display: none;
}
.idsk-registration-for-event {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  margin-top: 30px;
}
@media print {
  .idsk-registration-for-event {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-registration-for-event {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-registration-for-event {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .idsk-registration-for-event {
    color: #000000;
  }
}
.idsk-registration-for-event__thank-you-msg {
  display: none;
  margin-bottom: 0;
}
.idsk-registration-for-event .govuk-select {
  width: 100%;
}
@media (min-width: 40.0625em) {
  .idsk-registration-for-event .govuk-form-group {
    max-width: 465px;
  }
}
.idsk-registration-for-event .govuk-error-message {
  display: none;
}
@media (min-width: 40.0625em) {
  .idsk-registration-for-event .govuk-form-group--error.govuk-form-group,
.idsk-registration-for-event .govuk-form-group--error.govuk-select {
    max-width: 450px;
  }
}
.idsk-registration-for-event .govuk-checkboxes__label {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-top: -5px;
}
.idsk-registration-for-event .idsk-button {
  margin-bottom: 0;
}
.idsk-address {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  padding: 0;
}
@media print {
  .idsk-address {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-address {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-address {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .idsk-address {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .idsk-address {
    width: 33.3333%;
    float: left;
  }
}
.idsk-address__map {
  border: 1px solid #000000;
  height: 148px;
  margin-bottom: 30px;
  margin-top: 25px;
  width: 100%;
}
.idsk-address__separator-top {
  background-color: #003078;
  border: none;
  height: 2px;
}
.idsk-address__separator-bottom {
  display: none;
}
.idsk-address__link-text {
  margin-left: 15px;
}
.idsk-address__link-text:before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 6.5px 0 6.5px 11.258px;
  border-left-color: inherit;
  content: "";
  display: inline-block;
  margin-left: -15px;
  margin-top: 4px;
  position: absolute;
}
@media (min-width: 40.0625em) {
  .idsk-address__link-text:before {
    margin-top: 6px;
  }
}
.idsk-address .govuk-body {
  margin-bottom: 5px;
}
.idsk-address .govuk-body > .govuk-link {
  display: inline-block;
  margin-top: 15px;
}
.idsk-address .govuk-heading-m {
  margin-bottom: 10px;
}
.idsk-address--full-width {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-address--full-width {
    width: 100%;
    float: left;
  }
}
.idsk-address--full-width .idsk-address__content {
  width: 100%;
  display: inline-block;
}
.idsk-address--full-width .idsk-address__description {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-address--full-width .idsk-address__description {
    width: 100%;
    float: left;
  }
}
@media (min-width: 48.0625em) {
  .idsk-address--full-width .idsk-address__description {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    padding: 0;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-address--full-width .idsk-address__description {
    width: 50%;
    float: left;
  }
}
.idsk-address--full-width .idsk-address__map {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  height: 202px;
  margin-top: 0;
  padding: 0;
}
@media (min-width: 40.0625em) {
  .idsk-address--full-width .idsk-address__map {
    width: 100%;
    float: left;
  }
}
@media (min-width: 48.0625em) {
  .idsk-address--full-width .idsk-address__map {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    padding: 0;
  }
}
@media (min-width: 48.0625em) and (min-width: 40.0625em) {
  .idsk-address--full-width .idsk-address__map {
    width: 50%;
    float: left;
  }
}
.idsk-address--full-width .idsk-address__separator-bottom {
  background-color: #f3f2f1;
  border: none;
  display: block;
  height: 2px;
  margin-top: 0;
}
.idsk-address--full-width .idsk-address__separator-top {
  display: none;
}
.idsk-search-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.idsk-search-component label {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  position: absolute;
  padding-left: 10px;
  padding-top: 10px;
  cursor: text;
  color: #626a6e;
}
@media print {
  .idsk-search-component label {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-component label {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-component label {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-component label {
    padding-top: 8px;
  }
}
.idsk-search-component label.idsk-intro-block-site-search-text-small {
  padding-top: 7px;
  margin-top: 1px;
  color: #0b0c0c;
}
.idsk-search-component__input {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  height: 40px;
  border: 1px solid #0b0c0c;
  margin-right: -3px;
  font-style: normal;
  font-weight: normal;
}
@media print {
  .idsk-search-component__input {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-search-component__input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-search-component__input {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 48.0625em) {
  .idsk-search-component__input {
    height: 40px;
  }
}
.idsk-search-component__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background-color: #626a6e;
  -webkit-mask: url("/assets/images/header-web/search-input-close.svg") no-repeat center;
  mask: url("/assets/images/header-web/search-input-close.svg") no-repeat center;
  display: inline-block;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 17px;
  width: 17px;
}
.idsk-search-component__input:focus {
  border: 4px solid #0b0c0c;
  z-index: 3;
  box-shadow: none;
  margin-right: 3px;
}
.idsk-search-component__button {
  width: 44px;
  height: 40px;
  margin-bottom: 0;
  background-color: #0065b3;
  box-shadow: none;
}
.idsk-search-component__button:hover {
  background: #003078;
}
.idsk-search-component__button:active {
  top: 0;
}
.idsk-search-component__input--small {
  height: 40px;
}
.idsk-search-component__button--small {
  height: 40px;
  width: 40px;
  z-index: 2;
}
.idsk-search-component__button--small svg {
  height: 18px;
  width: 18px;
}
.idsk-search-component .idsk-search-component__label--small {
  padding-left: 7px;
  padding-top: 7px;
}
.idsk-search-component--small {
  height: 50px;
  padding-top: 5px;
}
.idsk-subscription-form .govuk-heading-xl {
  margin-bottom: 15px;
}
@media (max-width: 40.0525em) {
  .idsk-subscription-form .govuk-heading-xl {
    margin-bottom: 10px;
  }
}
.idsk-subscription-form__description-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 30px;
}
@media (min-width: 40.0625em) {
  .idsk-subscription-form__description-text {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.1111111111;
  }
}
@media print {
  .idsk-subscription-form__description-text {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-subscription-form .idsk-button {
  width: 100%;
  margin-bottom: 0;
  line-height: 32px;
  padding: 4px 4px 3px;
}
.idsk-subscription-form .govuk-form-group {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  position: relative;
}
.idsk-subscription-form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.idsk-subscription-form__input .idsk-button, .idsk-subscription-form__input .govuk-input {
  height: 45px;
}
.idsk-subscription-form__input .idsk-button {
  width: 218px;
  box-shadow: none;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.idsk-subscription-form__input .govuk-input:focus {
  position: relative;
  z-index: 1;
}
.idsk-subscription-form__agreement-text {
  margin-bottom: 0;
}
.idsk-subscription-form:not(.idsk-subscription-form__subscription-confirmed) .idsk-subscription-form__confirm-text {
  display: none;
}
.idsk-subscription-form .govuk-label {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.25;
  position: absolute;
  padding-left: 10px;
  padding-top: 10px;
  cursor: text;
  color: #626a6e;
  bottom: 5px;
}
@media (max-width: 40.0525em) {
  .idsk-subscription-form__description-text, .idsk-subscription-form__input {
    margin-bottom: 20px;
  }
  .idsk-subscription-form__input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .idsk-subscription-form__input .idsk-button {
    margin-top: 20px;
    width: 100%;
  }
}
.idsk-subscription-form__subscription-confirmed form, .idsk-subscription-form__subscription-confirmed .idsk-subscription-form__agreement-text, .idsk-subscription-form__subscription-confirmed .idsk-subscription-form__default-text {
  display: none;
}
.idsk-subscription-form__subscription-confirmed .idsk-subscription-form__description-text {
  margin-bottom: 0;
}
.idsk-interactive-map {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
}
@media print {
  .idsk-interactive-map {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-interactive-map {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-interactive-map {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .idsk-interactive-map {
    color: #000000;
  }
}
.idsk-interactive-map > .govuk-heading-l {
  margin-bottom: 20px;
}
.idsk-interactive-map__header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 48.0625em) {
  .idsk-interactive-map__header-controls {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.idsk-interactive-map__header-radios {
  display: inline-block;
  padding: 0;
  width: auto;
}
.idsk-interactive-map__header-radios .govuk-radios__item {
  display: inline-block;
  margin-bottom: 0;
}
.idsk-interactive-map__header-radios .idsk-intereactive-map__radio-map,
.idsk-interactive-map__header-radios .idsk-intereactive-map__radio-table {
  top: 10px;
}
.idsk-interactive-map__header-radios .idsk-intereactive-map__radio-table {
  margin-right: 0;
}
.idsk-interactive-map__header .govuk-form-group {
  margin-bottom: 0;
}
.idsk-interactive-map__header-selects {
  display: inline-block;
  padding: 0;
  width: auto;
}
@media (min-width: 48.0625em) {
  .idsk-interactive-map__header-selects {
    float: right;
  }
}
.idsk-interactive-map__header-selects .govuk-form-group {
  display: inline-block;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}
@media (min-width: 48.0625em) {
  .idsk-interactive-map__header-selects .govuk-form-group {
    margin-top: 0;
    width: auto;
  }
}
.idsk-interactive-map__header-selects .govuk-form-group .govuk-select {
  width: 100%;
}
.idsk-interactive-map__header-selects .govuk-form-group:first-child {
  margin-right: 20px;
}
.idsk-interactive-map__header-selects .govuk-form-group:last-child {
  margin-right: 0;
}
.idsk-interactive-map__current-time-period {
  text-transform: lowercase;
}
.idsk-interactive-map__body {
  clear: both;
  display: block;
  height: 465px;
  overflow: auto;
}
.idsk-interactive-map__table {
  display: none;
}
.idsk-interactive-map__map, .idsk-interactive-map__map-iframe, .idsk-interactive-map__table, .idsk-interactive-map__table-iframe {
  border: none;
  height: 100%;
  width: 100%;
  overflow-y: hidden;
}
.idsk-interactive-map__meta {
  margin-top: 10px;
}
.idsk-interactive-map__meta-data {
  float: left;
}
.idsk-interactive-map__meta-source {
  float: right;
}
@media (min-width: 48.0625em) {
  .idsk-interactive-map .govuk-radios .govuk-radios__input:hover + .govuk-radios__label::before {
    box-shadow: 0 0 0 10px #bfc1c3;
  }
  .idsk-interactive-map .govuk-radios .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
    box-shadow: 0 0 0 4px #ffdf0f, 0 0 0 10px #bfc1c3;
  }
  .idsk-interactive-map .govuk-radios__label {
    padding-left: 0;
  }
  .idsk-interactive-map .govuk-radios__label::before {
    top: 8px;
    width: 24px;
    height: 24px;
  }
  .idsk-interactive-map .govuk-radios__label::after {
    top: 15px;
    left: 7px;
    border-width: 5px;
  }
}
.idsk-table {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
}
@media print {
  .idsk-table {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-table {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-table {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .idsk-table {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .idsk-table {
    margin-bottom: 30px;
  }
}
.idsk-table__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.idsk-table__heading-extended .govuk-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.idsk-table__heading-extended .govuk-radios .govuk-radios__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  float: none;
}
.idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__input {
  position: initial;
  width: 36px;
  height: 36px;
}
.idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__label {
  white-space: nowrap;
}
.idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__label::before {
  width: 36px;
  height: 36px;
}
.idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__label::after {
  border: 9px solid currentColor;
  top: 9px;
  left: 9px;
}
@media (max-width: 48.0525em) {
  .idsk-table__heading-extended .govuk-form-group {
    margin-left: 30px;
  }
  .idsk-table__heading-extended .govuk-radios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__input {
    width: 24px;
    height: 24px;
  }
  .idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__label {
    padding-top: 2px;
  }
  .idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__label::before {
    width: 24px;
    height: 24px;
  }
  .idsk-table__heading-extended .govuk-radios .govuk-radios__item .govuk-radios__label::after {
    border: 6px solid currentColor;
    top: 6px;
    left: 6px;
  }
}
.idsk-table__body {
  overflow: auto;
  display: block;
}
.idsk-table__head, .idsk-table__row {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.idsk-table__header {
  font-weight: 700;
}
.idsk-table__header .arrowBtn:last-of-type {
  padding-right: 20px;
}
.idsk-table__header .arrowBtn {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  display: block;
  height: 22px;
  line-height: normal;
  margin: 0;
  margin-left: 4px;
  outline: none;
  overflow: visible;
  padding: 0;
  width: 10px;
}
.idsk-table__header .arrowBtn::after {
  border-style: solid;
  border-width: 7px 6px 0;
  border-color: #000 transparent transparent;
  content: "";
  margin-left: 4px;
  position: absolute;
  top: calc(50% + 2px);
}
.idsk-table__header .arrowBtn::before {
  border-style: solid;
  border-width: 7px 6px 0;
  border-color: #000 transparent transparent;
  content: "";
  margin-left: 4px;
  position: absolute;
  top: calc(50% - 8px);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.idsk-table__header .arrowBtn:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-table__header .des.arrowBtn:before,
.idsk-table__header .aes.arrowBtn:after {
  display: none;
}
.idsk-table__header .th-span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.idsk-table__header .sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}
.idsk-table__header,
.idsk-table__cell {
  padding: 10px 20px 10px 0;
  border-bottom: 1px solid #bfc1c3;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.idsk-table__cell--numeric {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
  font-weight: 400;
}
@media print {
  .idsk-table__cell--numeric {
    font-family: sans-serif;
  }
}
@supports (font-variant-numeric: tabular-nums) {
  .idsk-table__cell--numeric {
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant-numeric: tabular-nums;
  }
}
.idsk-table__header--numeric,
.idsk-table__cell--numeric {
  text-align: right;
}
.idsk-table__header:last-child,
.idsk-table__cell:last-child {
  padding-right: 0;
}
.idsk-table__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.idsk-table__meta-buttons {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.idsk-table__meta-buttons .idsk-button {
  margin-right: 15px;
  width: auto;
}
.idsk-table-filter {
  margin-top: 10px;
  margin-bottom: 27px;
}
.idsk-tabs {
  margin-top: 5px;
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .idsk-tabs {
    margin-top: 5px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-tabs {
    margin-bottom: 30px;
  }
}
.idsk-tabs__tab-arrow-mobile {
  background-color: #0b0c0c;
  -webkit-mask: url("/assets/images/header-web/navigation-arrow-mobile.svg") no-repeat center;
  mask: url("/assets/images/header-web/navigation-arrow-mobile.svg") no-repeat center;
  display: inline;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 11px;
  height: 7px;
  z-index: 1;
}
.idsk-tabs__title {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-bottom: 10px;
}
@media print {
  .idsk-tabs__title {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-tabs__title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-tabs__title {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .idsk-tabs__title {
    color: #000000;
  }
}
@media (max-width: 40.0525em) {
  .idsk-tabs__title {
    display: none;
  }
}
.idsk-tabs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .idsk-tabs__list {
    margin-bottom: 30px;
  }
}
@media (max-width: 40.0525em) {
  .idsk-tabs__list {
    display: none;
  }
}
.idsk-tabs__list-item {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-left: 25px;
}
@media print {
  .idsk-tabs__list-item {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-tabs__list-item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-tabs__list-item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-tabs__list-item::before {
  color: #0b0c0c;
  content: "—";
  margin-left: -25px;
  padding-right: 5px;
}
@media print {
  .idsk-tabs__list-item::before {
    color: #000000;
  }
}
.idsk-tabs__tab {
  display: inline-block;
  margin-bottom: 10px;
}
.idsk-tabs__tab:link {
  color: #0065b3;
}
.idsk-tabs__tab:visited {
  color: #4c2c92;
}
.idsk-tabs__tab:hover {
  color: #003078;
}
.idsk-tabs__tab:active {
  color: #0b0c0c;
}
.idsk-tabs__tab:focus {
  color: #0b0c0c;
}
.idsk-tabs__tab:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-tabs__panel {
  margin-bottom: 30px;
}
@media (min-width: 40.0625em) {
  .idsk-tabs__panel {
    margin-bottom: 50px;
  }
}
@media (max-width: 40.0525em) {
  .idsk-tabs__panel {
    margin: 0;
  }
  .idsk-tabs__panel-content {
    display: none;
  }
}
.idsk-tabs__mobile-tab {
  display: none;
}
@media (max-width: 40.0525em) {
  .idsk-tabs__mobile-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: none;
    width: 100%;
    color: #0b0c0c;
    padding: 20px;
    margin: 0;
    background-color: #f3f2f1;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
    border-radius: 2px 2px 0 0;
  }
  .idsk-tabs__mobile-tab:focus, .idsk-tabs__mobile-tab:active {
    outline: 3px solid transparent;
    color: #0b0c0c;
    background-color: #ffdf0f;
    box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
    text-decoration: none;
    position: relative;
  }
  .idsk-tabs__mobile-tab--selected .idsk-tabs__tab-arrow-mobile {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media (min-width: 40.0625em) {
  .idsk-tabs__mobile-tab-content {
    display: none;
  }
}
@media (max-width: 40.0525em) {
  .idsk-tabs__mobile-tab-content {
    padding: 20px;
    overflow: auto;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
    border-radius: 2px 2px 0 0;
  }
  .idsk-tabs__mobile-tab-content--hidden {
    display: none;
  }
  .idsk-tabs__mobile-tab-content > *:last-child {
    margin-bottom: 0;
  }
}
.idsk-tabs__panel--hidden {
  display: none;
}
@media (max-width: 40.0525em) {
  .idsk-tabs__panel--hidden .idsk-tabs__mobile-tab-content {
    display: none;
  }
}
.idsk-tabs__list--mobile {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__list {
    margin-bottom: 0;
    border-bottom: 1px solid #bfc1c3;
  }
  .js-enabled .idsk-tabs__list:after {
    content: "";
    display: block;
    clear: both;
  }
  .js-enabled .idsk-tabs__title {
    display: none;
  }
  .js-enabled .idsk-tabs__list-item {
    position: relative;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-left: 0;
    padding: 10px 20px;
    background-color: #dee0e2;
    text-align: center;
  }
  .js-enabled .idsk-tabs__list-item::before {
    content: none;
  }
  .js-enabled .idsk-tabs__list-item--selected {
    position: relative;
    margin-top: -5px;
    margin-bottom: -1px;
    padding-top: 14px;
    padding-right: 19px;
    padding-bottom: 16px;
    padding-left: 19px;
    border: 1px solid #bfc1c3;
    border-bottom: 0;
    background-color: #ffffff;
  }
  .js-enabled .idsk-tabs__list-item--selected .idsk-tabs__tab {
    text-decoration: none;
  }
  .js-enabled .idsk-tabs__tab {
    margin-bottom: 0;
  }
  .js-enabled .idsk-tabs__tab:link, .js-enabled .idsk-tabs__tab:visited {
    color: #0b0c0c;
  }
}
@media print and (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__tab:link, .js-enabled .idsk-tabs__tab:visited {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__tab:hover {
    color: rgba(11, 12, 12, 0.99);
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__tab:active, .js-enabled .idsk-tabs__tab:focus {
    color: #0b0c0c;
  }
}
@media print and (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__tab:active, .js-enabled .idsk-tabs__tab:focus {
    color: #000000;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__tab::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__panel {
    margin-bottom: 0;
    padding: 30px 20px;
    border: 1px solid #bfc1c3;
    border-top: 0;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__panel {
    margin-bottom: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-tabs__panel > :last-child {
    margin-bottom: 0;
  }
}
.idsk-timeline__content {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  height: 75px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
@media print {
  .idsk-timeline__content {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media print {
  .idsk-timeline__content {
    font-size: 12pt;
    line-height: 1.2;
  }
}
@media (min-width: 23.4375em) {
  .idsk-timeline__content {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 23.4375em) {
  .idsk-timeline__content {
    font-family: sans-serif;
  }
}
@media (min-width: 23.4375em) and (min-width: 40.0625em) {
  .idsk-timeline__content {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 23.4375em) {
  .idsk-timeline__content {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content {
    margin-top: 0;
  }
}
@media (min-width: 48.0625em) {
  .idsk-timeline__content {
    height: 70px;
  }
}
.idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
}
@media print {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media print {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-size: 12pt;
    line-height: 1.2;
  }
}
@media (min-width: 23.4375em) {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print and (min-width: 23.4375em) {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-family: sans-serif;
  }
}
@media (min-width: 23.4375em) and (min-width: 40.0625em) {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print and (min-width: 23.4375em) {
  .idsk-timeline__content .govuk-body-m,
.idsk-timeline__content .govuk-body {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-timeline__content.govuk-body {
  margin-bottom: -50px;
  margin-top: 20px;
  border-top: 1px solid #bfc1c3;
}
.idsk-timeline__content.idsk-timeline__content__caption--long {
  height: 100px;
}
@media (min-width: 48.0625em) {
  .idsk-timeline__content.idsk-timeline__content__caption--long {
    height: 70px;
  }
}
.idsk-timeline__content__caption,
.idsk-timeline__content__title,
.idsk-timeline__content__date-line {
  position: relative;
  width: 67%;
  margin-left: 10px;
}
@media (min-width: 25.3125em) {
  .idsk-timeline__content__caption,
.idsk-timeline__content__title,
.idsk-timeline__content__date-line {
    width: 69%;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content__caption,
.idsk-timeline__content__title,
.idsk-timeline__content__date-line {
    width: 75%;
    margin-left: 15px;
  }
}
.idsk-timeline__content__date-line {
  margin-bottom: 15px;
}
.idsk-timeline__content__time {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
@media print {
  .idsk-timeline__content__time {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content__time {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-timeline__content__time {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-timeline__left-side .govuk-body-m {
  font-weight: bold;
}
.idsk-timeline__content__title-div {
  margin-bottom: -20px;
}
@media (min-width: 25.3125em) {
  .idsk-timeline__content__title-div {
    margin-bottom: -50px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content__title-div {
    margin-bottom: -25px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content__title {
    margin-top: 15px;
  }
}
.idsk-timeline__content__title .govuk-heading-m {
  margin-bottom: 0;
  margin-top: -40px;
}
.idsk-timeline__left-side {
  width: 26.5%;
}
@media (min-width: 25.3125em) {
  .idsk-timeline__left-side {
    width: 23%;
  }
}
@media (orientation: landscape) {
  .idsk-timeline__left-side {
    width: 25%;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__left-side {
    width: 25%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-timeline__left-side {
    width: 17%;
  }
}
.idsk-timeline__middle {
  width: 2%;
}
@media (orientation: landscape) {
  .idsk-timeline__middle {
    width: 7%;
  }
}
.idsk-timeline__vertical-line,
.idsk-timeline__vertical-line--circle {
  content: "";
  position: absolute;
  z-index: 2;
  border-left: solid 2px #949494;
  background: #ffffff;
  top: 10px;
  height: calc(100% + 30px);
}
.idsk-timeline__content .idsk-timeline__vertical-line--circle:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  z-index: 5;
  top: calc(50% - 32px);
  left: -10px;
  width: 12px;
  height: 12px;
  color: #0b0c0c;
  background: #949494;
  border-radius: 100px;
  border: solid 2px #949494;
  left: -7px;
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content .idsk-timeline__vertical-line--circle:before {
    left: -8.5px;
    top: calc(50% - 35px);
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-timeline__content .idsk-timeline__vertical-line--circle:before {
    left: -8.9px;
  }
}
.idsk-timeline__button--left-arrow {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-width: 0;
  color: #0065b3;
}
@media print {
  .idsk-timeline__button--left-arrow {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__button--left-arrow {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-timeline__button--left-arrow {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-timeline__button--back,
.idsk-timeline__button--forward {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  border-width: 0;
  color: #0065b3;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: underline;
  text-align: right;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .idsk-timeline__button--back,
.idsk-timeline__button--forward {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__button--back,
.idsk-timeline__button--forward {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-timeline__button--back,
.idsk-timeline__button--forward {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media print {
  .idsk-timeline__button--back,
.idsk-timeline__button--forward {
    font-family: sans-serif;
  }
}
.idsk-timeline__button--back:focus,
.idsk-timeline__button--forward:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-timeline__button--back:link,
.idsk-timeline__button--forward:link {
  color: #0065b3;
}
.idsk-timeline__button--back:visited,
.idsk-timeline__button--forward:visited {
  color: #4c2c92;
}
.idsk-timeline__button--back:hover,
.idsk-timeline__button--forward:hover {
  color: #003078;
}
.idsk-timeline__button--back:active,
.idsk-timeline__button--forward:active {
  color: #0b0c0c;
}
.idsk-timeline__button--back:focus,
.idsk-timeline__button--forward:focus {
  color: #0b0c0c;
}
.idsk-timeline__button--back {
  padding-left: 0;
  margin-bottom: 10px;
}
.idsk-timeline__button--forward {
  margin-top: 30px;
  padding-right: 0;
  float: right;
  margin-bottom: 15px;
}
.idsk-timeline__button__svg--previous {
  padding-right: 10px;
}
.idsk-timeline__button__svg--next {
  padding-left: 10px;
}
.idsk-timeline__content__text {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  float: right;
  margin-top: -25px;
  margin-right: -5px;
}
@media print {
  .idsk-timeline__content__text {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-timeline__content__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-timeline__content__text {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 25.3125em) {
  .idsk-timeline__content__text {
    margin-right: -15px;
  }
}
@media (orientation: landscape) {
  .idsk-timeline__content__text {
    margin-right: 0;
  }
}
.govuk-accordion {
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .govuk-accordion {
    margin-bottom: 30px;
  }
}
.govuk-accordion__section {
  padding-top: 15px;
}
.govuk-accordion__section-header {
  padding-top: 15px;
  padding-bottom: 15px;
}
.govuk-accordion__section-heading {
  margin-top: 0;
  margin-bottom: 0;
}
.govuk-accordion__section-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: inline-block;
  margin-bottom: 0;
  padding-top: 15px;
}
@media print {
  .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .govuk-accordion__section-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .govuk-accordion__section-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.govuk-accordion__section-summary {
  margin-top: 10px;
  margin-bottom: 0;
}
.govuk-accordion__section-content > :last-child {
  margin-bottom: 0;
}
.js-enabled .govuk-accordion {
  border-bottom: 1px solid #bfc1c3;
}
.js-enabled .govuk-accordion__section {
  padding-top: 0;
}
.js-enabled .govuk-accordion__section-content {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-accordion__section-content {
    padding-top: 15px;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-accordion__section-content {
    padding-bottom: 15px;
  }
}
.js-enabled .govuk-accordion__section--expanded .govuk-accordion__section-content {
  display: block;
}
.js-enabled .govuk-accordion__open-all {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-width: 0;
  color: #0065b3;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
@media print {
  .js-enabled .govuk-accordion__open-all {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .govuk-accordion__open-all {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .js-enabled .govuk-accordion__open-all {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media print {
  .js-enabled .govuk-accordion__open-all {
    font-family: sans-serif;
  }
}
.js-enabled .govuk-accordion__open-all:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.js-enabled .govuk-accordion__open-all:link {
  color: #0065b3;
}
.js-enabled .govuk-accordion__open-all:visited {
  color: #4c2c92;
}
.js-enabled .govuk-accordion__open-all:hover {
  color: #003078;
}
.js-enabled .govuk-accordion__open-all:active {
  color: #0b0c0c;
}
.js-enabled .govuk-accordion__open-all:focus {
  color: #0b0c0c;
}
.js-enabled .govuk-accordion__open-all::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.js-enabled .govuk-accordion__section-header {
  position: relative;
  padding-right: 40px;
  border-top: 1px solid #bfc1c3;
  color: #0065b3;
  cursor: pointer;
}
@media (hover: none) {
  .js-enabled .govuk-accordion__section-header:hover {
    border-top-color: #0065b3;
    box-shadow: inset 0 3px 0 0 #0065b3;
  }
}
.js-enabled .govuk-accordion__section-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
  border-width: 0;
  color: inherit;
  background: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
}
@media print {
  .js-enabled .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}
.js-enabled .govuk-accordion__section-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.js-enabled .govuk-accordion__section-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.js-enabled .govuk-accordion__section-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.js-enabled .govuk-accordion__section-button:hover:not(:focus) {
  text-decoration: underline;
}
@media (hover: none) {
  .js-enabled .govuk-accordion__section-button:hover {
    text-decoration: none;
  }
}
.js-enabled .govuk-accordion__controls {
  text-align: right;
}
.js-enabled .govuk-accordion__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
}
.js-enabled .govuk-accordion__icon:after,
.js-enabled .govuk-accordion__icon:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 25%;
  margin: auto;
  border: 2px solid transparent;
  background-color: #0b0c0c;
}
.js-enabled .govuk-accordion__icon:before {
  width: 100%;
}
.js-enabled .govuk-accordion__icon:after {
  height: 100%;
}
.js-enabled .govuk-accordion__section--expanded .govuk-accordion__icon:after {
  content: " ";
  display: none;
}
.idsk-table-filter .govuk-select {
  width: 100%;
  background-color: #ffffff;
}
.idsk-table-filter .govuk-input:focus, .idsk-table-filter .govuk-select:focus {
  outline: none;
  border-color: #ffdf0f;
  border-width: 3px;
  padding-left: calc(5px - 1px);
  box-shadow: inset 0 0 0 calc(2px + 1px) #0b0c0c;
}
.idsk-table-filter .govuk-link {
  color: #0065b3;
}
.idsk-table-filter .govuk-link:hover {
  cursor: pointer;
}
.idsk-table-filter__panel {
  padding: 20px;
  background-color: #f3f2f1;
}
.idsk-table-filter__panel:not(.idsk-table-filter__panel:first-of-type) {
  margin-top: 10px;
}
.idsk-table-filter__panel .idsk-table-filter__title {
  display: inline-block;
  margin-bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 20.9375em) {
  .idsk-table-filter__panel .idsk-table-filter__title {
    font-size: 15px;
  }
}
.idsk-table-filter__panel .idsk-filter-menu__toggle {
  float: right;
  margin-bottom: 0;
  padding: 0;
  border: none;
}
@media (max-width: 20.9375em) {
  .idsk-table-filter__panel .idsk-filter-menu__toggle {
    font-size: 14px;
  }
}
.idsk-table-filter__panel .idsk-table-filter__filter-inputs {
  padding-bottom: 12px;
}
.idsk-table-filter__panel .idsk-table-filter__content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
.idsk-table-filter__panel .govuk-form-group {
  margin-bottom: 5px;
}
@media (min-width: 40.0625em) {
  .idsk-table-filter__panel .govuk-form-group {
    margin-bottom: 18px;
  }
}
.idsk-table-filter__panel .idsk-button {
  margin-bottom: 0;
}
.idsk-table-filter .idsk-table-filter--expanded > .idsk-table-filter__title {
  margin-bottom: 20px;
}
.idsk-table-filter__category:not(.idsk-table-filter--expanded) {
  margin-bottom: 25px;
}
.idsk-table-filter__category {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.idsk-table-filter__category:first-child {
  margin-top: 10px;
}
@media (min-width: 40.0625em) {
  .idsk-table-filter__category:last-of-type {
    margin-bottom: 40px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-table-filter__category .idsk-table-filter__filter-inputs {
    padding-bottom: 2px;
  }
}
.idsk-table-filter__category.idsk-table-filter--expanded .idsk-table-filter__title {
  margin-bottom: 18px;
}
@media (min-width: 40.0625em) {
  .idsk-table-filter__category.idsk-table-filter--expanded:last-of-type {
    margin-bottom: 15px;
  }
}
.idsk-table-filter__active-filters {
  padding-bottom: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 40.0525em) {
  .idsk-table-filter__active-filters {
    padding-top: 15px;
  }
}
.idsk-table-filter__active-filters__hide {
  display: none;
}
.idsk-table-filter__active-filters button {
  border: none;
  background: none;
}
.idsk-table-filter__active-filters.idsk-table-filter--expanded {
  padding-bottom: 5px;
}
.idsk-table-filter__active-filters.idsk-table-filter--expanded > .idsk-table-filter__title {
  margin-bottom: 15px;
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div, .idsk-table-filter__active-filters .idsk-table-filter__content > button {
  padding: 5px 0;
  margin-right: 10px;
  margin-bottom: 10px;
  float: left;
}
@media (min-width: 40.0625em) {
  .idsk-table-filter__active-filters .idsk-table-filter__content > div, .idsk-table-filter__active-filters .idsk-table-filter__content > button {
    margin-bottom: 15px;
  }
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div.govuk-link, .idsk-table-filter__active-filters .idsk-table-filter__content > button.govuk-link {
  font-weight: bold;
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div:nth-last-child(2), .idsk-table-filter__active-filters .idsk-table-filter__content > button:nth-last-child(2) {
  margin-right: 25px;
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div.idsk-table-filter__parameter, .idsk-table-filter__active-filters .idsk-table-filter__content > button.idsk-table-filter__parameter {
  background-color: #dee0e2;
  padding-left: 10px;
  padding-right: 10px;
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div .idsk-table-filter__parameter-remove, .idsk-table-filter__active-filters .idsk-table-filter__content > button .idsk-table-filter__parameter-remove {
  margin-left: 15px;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 0;
  outline: none;
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div .idsk-table-filter__parameter-remove:hover, .idsk-table-filter__active-filters .idsk-table-filter__content > button .idsk-table-filter__parameter-remove:hover {
  cursor: pointer;
}
.idsk-table-filter__active-filters .idsk-table-filter__content > div .idsk-table-filter__parameter-remove:focus, .idsk-table-filter__active-filters .idsk-table-filter__content > button .idsk-table-filter__parameter-remove:focus {
  background-color: #ffdf0f;
  box-shadow: 0 2px 0 #0b0c0c;
  outline: none;
}
.idsk-table-filter__active-filters .idsk-table-filter__parameter-title {
  position: relative;
  top: -1px;
}
.idsk-footer {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #bfc1c3;
  color: #0b0c0c;
  background: #dee0e2;
}
@media print {
  .idsk-footer {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-footer {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer {
    padding-top: 40px;
  }
}
@media (min-width: 40.0625em) {
  .idsk-footer {
    padding-bottom: 25px;
  }
}
.idsk-footer__link:link, .idsk-footer__link:visited, .idsk-footer__link:hover, .idsk-footer__link:active {
  color: #0065b3;
}
.idsk-footer__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-footer__inline-list .idsk-footer__link,
.idsk-footer__list .idsk-footer__link {
  text-decoration: none;
}
.idsk-footer__inline-list .idsk-footer__link:hover:not(:focus), .idsk-footer__inline-list .idsk-footer__link:active:not(:focus),
.idsk-footer__list .idsk-footer__link:hover:not(:focus),
.idsk-footer__list .idsk-footer__link:active:not(:focus) {
  text-decoration: underline;
}
.idsk-footer__section-break {
  margin: 0;
  margin-bottom: 30px;
  border: 0;
  border-bottom: 1px solid #bfc1c3;
}
@media (min-width: 40.0625em) {
  .idsk-footer__section-break {
    margin-bottom: 50px;
  }
}
.idsk-footer__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.idsk-footer__meta-item {
  margin-right: 15px;
  margin-bottom: 25px;
  margin-left: 15px;
}
.idsk-footer__meta-item--grow {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 40.0525em) {
  .idsk-footer__meta-item--grow {
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px;
  }
}
.idsk-footer__licence-logo {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}
@media (max-width: 48.0525em) {
  .idsk-footer__licence-logo {
    margin-bottom: 15px;
  }
}
.idsk-footer__licence-logo > * {
  width: 218px;
  height: 47px;
}
.idsk-footer__licence-description {
  display: inline-block;
  margin-bottom: 15px;
}
.idsk-footer__copyright-logo {
  display: inline-block;
  min-width: 125px;
  padding-top: 112px;
  background-image: url("/assets/images/govuk-crest.png");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 125px 102px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .idsk-footer__copyright-logo {
    background-image: url("/assets/images/govuk-crest-2x.png");
  }
}
.idsk-footer__inline-list {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 0;
}
.idsk-footer__meta-custom {
  margin-bottom: 20px;
}
.idsk-footer__inline-list-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}
.idsk-footer__heading {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #bfc1c3;
}
@media (min-width: 40.0625em) {
  .idsk-footer__heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 40.0525em) {
  .idsk-footer__heading {
    padding-bottom: 10px;
  }
}
.idsk-footer__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.idsk-footer__section {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 30px;
  margin-left: 15px;
  vertical-align: top;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
@media (max-width: 48.0525em) {
  .idsk-footer__section {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-footer__section:first-child {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
}
.idsk-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (min-width: 48.0625em) {
  .idsk-footer__list--columns-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .idsk-footer__list--columns-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
.idsk-footer__list-item {
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .idsk-footer__list-item {
    margin-bottom: 20px;
  }
}
.idsk-footer__list-item:last-child {
  margin-bottom: 0;
}
.idsk-header {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #ffffff;
  background: #131313;
}
@media print {
  .idsk-header {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(33.3%, #ffffff), color-stop(33.3%, #003183), color-stop(66.6%, #003183), color-stop(66.6%, #d0190f), to(#d0190f));
  background-image: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 33.3%, #003183 33.3%, #003183 66.6%, #d0190f 66.6%, #d0190f 100%);
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 33.3%, #003183 33.3%, #003183 66.6%, #d0190f 66.6%, #d0190f 100%);
  /* equivalent to (to right, white, white 50%, black 50%, black) */
  background-size: 150px 100%;
  background-repeat: repeat;
}
.idsk-header__container--full-width {
  padding: 0 15px;
  border-color: #0065b3;
}
.idsk-header__container--full-width .idsk-header__menu-button {
  right: 15px;
}
.idsk-header__container {
  position: relative;
  padding-top: 20px;
  padding-bottom: 10px;
}
.idsk-header__container:after {
  content: "";
  display: block;
  clear: both;
}
.idsk-header__logotype {
  display: inline-block;
  margin-right: 5px;
}
.idsk-header__logotype > * {
  width: 186px;
  height: 30px;
}
.idsk-header__product-name {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-table;
  padding-right: 10px;
}
@media print {
  .idsk-header__product-name {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header__product-name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media print {
  .idsk-header__product-name {
    font-size: 18pt;
    line-height: 1;
  }
}
.idsk-header__link {
  text-decoration: none;
}
.idsk-header__link:link, .idsk-header__link:visited {
  color: #ffffff;
}
.idsk-header__link:hover {
  text-decoration: underline;
}
.idsk-header__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header__link--homepage {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}
@media print {
  .idsk-header__link--homepage {
    font-family: sans-serif;
  }
}
.idsk-header__link--homepage:link, .idsk-header__link--homepage:visited {
  text-decoration: none;
}
.idsk-header__link--homepage:hover, .idsk-header__link--homepage:active {
  margin-bottom: -1px;
  border-bottom: 1px solid;
}
.idsk-header__link--homepage:focus {
  margin-bottom: 0;
  border-bottom: 0;
}
.idsk-header__link--service-name {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
}
@media print {
  .idsk-header__link--service-name {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header__link--service-name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header__link--service-name {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-header__logo,
.idsk-header__content {
  box-sizing: border-box;
}
.idsk-header__logo {
  margin-bottom: 10px;
  padding-right: 50px;
}
@media (min-width: 40.0625em) {
  .idsk-header__logo {
    margin-bottom: 10px;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header__logo {
    width: 33.33%;
    padding-right: 15px;
    float: left;
    vertical-align: top;
  }
}
@media (min-width: 48.0625em) {
  .govuk-header__container--with-user .idsk-header__logo {
    width: 25%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header__content {
    width: 66.66%;
    padding-left: 15px;
    float: left;
  }
}
@media (min-width: 48.0625em) {
  .govuk-header__container--with-user .idsk-header__content {
    width: 50%;
  }
}
.idsk-header__menu-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: none;
  position: absolute;
  top: 20px;
  right: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: none;
}
@media print {
  .idsk-header__menu-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header__menu-button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header__menu-button {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header__menu-button:hover {
  text-decoration: underline;
}
.idsk-header__menu-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header__menu-button::after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 8.66px 5px 0 5px;
  border-top-color: inherit;
  content: "";
  margin-left: 5px;
}
@media (min-width: 40.0625em) {
  .idsk-header__menu-button {
    top: 15px;
  }
}
.idsk-header__menu-button--open::after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-width: 0 5px 8.66px 5px;
  border-bottom-color: inherit;
}
.idsk-header__navigation {
  margin-bottom: 10px;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 40.0625em) {
  .idsk-header__navigation {
    margin-bottom: 10px;
  }
}
.js-enabled .idsk-header__menu-button {
  display: block;
}
@media (min-width: 48.0625em) {
  .js-enabled .idsk-header__menu-button {
    display: none;
  }
}
.js-enabled .idsk-header__navigation {
  display: none;
}
@media (min-width: 48.0625em) {
  .js-enabled .idsk-header__navigation {
    display: block;
  }
}
.js-enabled .idsk-header__navigation--open {
  display: block;
}
@media (min-width: 48.0625em) {
  .idsk-header__navigation--end {
    margin: 0;
    padding: 5px 0;
    text-align: right;
  }
}
.idsk-header__navigation--no-service-name {
  padding-top: 40px;
}
.idsk-header__navigation-item {
  padding: 10px 0;
  border-bottom: 1px solid #2e3133;
}
@media (min-width: 48.0625em) {
  .idsk-header__navigation-item {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 0;
    border: 0;
  }
}
.idsk-header__navigation-item a {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  white-space: nowrap;
}
@media print {
  .idsk-header__navigation-item a {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header__navigation-item a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header__navigation-item a {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header__navigation-item--active a:link, .idsk-header__navigation-item--active a:hover, .idsk-header__navigation-item--active a:visited {
  color: #1d8feb;
}
.idsk-header__navigation-item--active a:focus {
  color: #0b0c0c;
}
.idsk-header__navigation-item:last-child {
  margin-right: 0;
}
.idsk-header__user {
  text-align: right;
}
@media (min-width: 48.0625em) {
  .idsk-header__user {
    width: 25%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header__user--end {
    margin: 0;
    padding: 5px 0;
    text-align: right;
  }
}
.idsk-header__user-icon {
  display: inline-block;
  vertical-align: middle;
  width: 2rem;
  height: 2rem;
  margin-top: -0.5rem;
  margin-right: 0.5rem;
  fill: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 48.0625em) {
  .idsk-header__user-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.idsk--header__user-name {
  float: right;
  margin-top: -0.5rem;
}
@media (min-width: 48.0625em) {
  .govuk-header__container--full-width .idsk-header__user-icon {
    margin-top: -0.5rem;
    margin-right: 0.5rem;
  }
}
.govuk-header__container--full-width .idsk--header__user-name {
  margin-top: -0.5rem;
}
.idsk--header__user-logout {
  color: #ffffff;
}
@media print {
  .idsk-header {
    border-bottom-width: 0;
    color: #0b0c0c;
    background: transparent;
  }
  .idsk-header__link:link, .idsk-header__link:visited {
    color: #0b0c0c;
  }
  .idsk-header__link:after {
    display: none;
  }
}
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}
.fa-xs {
  font-size: 0.75em;
}
.fa-sm {
  font-size: 0.875em;
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}
.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}
.fa-accessible-icon:before {
  content: "\f368";
}
.fa-accusoft:before {
  content: "\f369";
}
.fa-acquisitions-incorporated:before {
  content: "\f6af";
}
.fa-ad:before {
  content: "\f641";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-card:before {
  content: "\f2bb";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-adn:before {
  content: "\f170";
}
.fa-adversal:before {
  content: "\f36a";
}
.fa-affiliatetheme:before {
  content: "\f36b";
}
.fa-air-freshener:before {
  content: "\f5d0";
}
.fa-airbnb:before {
  content: "\f834";
}
.fa-algolia:before {
  content: "\f36c";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-alipay:before {
  content: "\f642";
}
.fa-allergies:before {
  content: "\f461";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-amazon-pay:before {
  content: "\f42c";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-amilia:before {
  content: "\f36d";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-android:before {
  content: "\f17b";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angry:before {
  content: "\f556";
}
.fa-angrycreative:before {
  content: "\f36e";
}
.fa-angular:before {
  content: "\f420";
}
.fa-ankh:before {
  content: "\f644";
}
.fa-app-store:before {
  content: "\f36f";
}
.fa-app-store-ios:before {
  content: "\f370";
}
.fa-apper:before {
  content: "\f371";
}
.fa-apple:before {
  content: "\f179";
}
.fa-apple-alt:before {
  content: "\f5d1";
}
.fa-apple-pay:before {
  content: "\f415";
}
.fa-archive:before {
  content: "\f187";
}
.fa-archway:before {
  content: "\f557";
}
.fa-arrow-alt-circle-down:before {
  content: "\f358";
}
.fa-arrow-alt-circle-left:before {
  content: "\f359";
}
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}
.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-arrows-alt-h:before {
  content: "\f337";
}
.fa-arrows-alt-v:before {
  content: "\f338";
}
.fa-artstation:before {
  content: "\f77a";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-asymmetrik:before {
  content: "\f372";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-atlas:before {
  content: "\f558";
}
.fa-atlassian:before {
  content: "\f77b";
}
.fa-atom:before {
  content: "\f5d2";
}
.fa-audible:before {
  content: "\f373";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-autoprefixer:before {
  content: "\f41c";
}
.fa-avianex:before {
  content: "\f374";
}
.fa-aviato:before {
  content: "\f421";
}
.fa-award:before {
  content: "\f559";
}
.fa-aws:before {
  content: "\f375";
}
.fa-baby:before {
  content: "\f77c";
}
.fa-baby-carriage:before {
  content: "\f77d";
}
.fa-backspace:before {
  content: "\f55a";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-bacon:before {
  content: "\f7e5";
}
.fa-bacteria:before {
  content: "\e059";
}
.fa-bacterium:before {
  content: "\e05a";
}
.fa-bahai:before {
  content: "\f666";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-balance-scale-left:before {
  content: "\f515";
}
.fa-balance-scale-right:before {
  content: "\f516";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-band-aid:before {
  content: "\f462";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-baseball-ball:before {
  content: "\f433";
}
.fa-basketball-ball:before {
  content: "\f434";
}
.fa-bath:before {
  content: "\f2cd";
}
.fa-battery-empty:before {
  content: "\f244";
}
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battle-net:before {
  content: "\f835";
}
.fa-bed:before {
  content: "\f236";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bezier-curve:before {
  content: "\f55b";
}
.fa-bible:before {
  content: "\f647";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-biking:before {
  content: "\f84a";
}
.fa-bimobject:before {
  content: "\f378";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-biohazard:before {
  content: "\f780";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitcoin:before {
  content: "\f379";
}
.fa-bity:before {
  content: "\f37a";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-blackberry:before {
  content: "\f37b";
}
.fa-blender:before {
  content: "\f517";
}
.fa-blender-phone:before {
  content: "\f6b6";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-blog:before {
  content: "\f781";
}
.fa-blogger:before {
  content: "\f37c";
}
.fa-blogger-b:before {
  content: "\f37d";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-bold:before {
  content: "\f032";
}
.fa-bolt:before {
  content: "\f0e7";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-bone:before {
  content: "\f5d7";
}
.fa-bong:before {
  content: "\f55c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-book-dead:before {
  content: "\f6b7";
}
.fa-book-medical:before {
  content: "\f7e6";
}
.fa-book-open:before {
  content: "\f518";
}
.fa-book-reader:before {
  content: "\f5da";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-bootstrap:before {
  content: "\f836";
}
.fa-border-all:before {
  content: "\f84c";
}
.fa-border-none:before {
  content: "\f850";
}
.fa-border-style:before {
  content: "\f853";
}
.fa-bowling-ball:before {
  content: "\f436";
}
.fa-box:before {
  content: "\f466";
}
.fa-box-open:before {
  content: "\f49e";
}
.fa-box-tissue:before {
  content: "\e05b";
}
.fa-boxes:before {
  content: "\f468";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-brain:before {
  content: "\f5dc";
}
.fa-bread-slice:before {
  content: "\f7ec";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-briefcase-medical:before {
  content: "\f469";
}
.fa-broadcast-tower:before {
  content: "\f519";
}
.fa-broom:before {
  content: "\f51a";
}
.fa-brush:before {
  content: "\f55d";
}
.fa-btc:before {
  content: "\f15a";
}
.fa-buffer:before {
  content: "\f837";
}
.fa-bug:before {
  content: "\f188";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-burn:before {
  content: "\f46a";
}
.fa-buromobelexperte:before {
  content: "\f37f";
}
.fa-bus:before {
  content: "\f207";
}
.fa-bus-alt:before {
  content: "\f55e";
}
.fa-business-time:before {
  content: "\f64a";
}
.fa-buy-n-large:before {
  content: "\f8a6";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-calendar:before {
  content: "\f133";
}
.fa-calendar-alt:before {
  content: "\f073";
}
.fa-calendar-check:before {
  content: "\f274";
}
.fa-calendar-day:before {
  content: "\f783";
}
.fa-calendar-minus:before {
  content: "\f272";
}
.fa-calendar-plus:before {
  content: "\f271";
}
.fa-calendar-times:before {
  content: "\f273";
}
.fa-calendar-week:before {
  content: "\f784";
}
.fa-camera:before {
  content: "\f030";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-campground:before {
  content: "\f6bb";
}
.fa-canadian-maple-leaf:before {
  content: "\f785";
}
.fa-candy-cane:before {
  content: "\f786";
}
.fa-cannabis:before {
  content: "\f55f";
}
.fa-capsules:before {
  content: "\f46b";
}
.fa-car:before {
  content: "\f1b9";
}
.fa-car-alt:before {
  content: "\f5de";
}
.fa-car-battery:before {
  content: "\f5df";
}
.fa-car-crash:before {
  content: "\f5e1";
}
.fa-car-side:before {
  content: "\f5e4";
}
.fa-caravan:before {
  content: "\f8ff";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-caret-square-down:before {
  content: "\f150";
}
.fa-caret-square-left:before {
  content: "\f191";
}
.fa-caret-square-right:before {
  content: "\f152";
}
.fa-caret-square-up:before {
  content: "\f151";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-carrot:before {
  content: "\f787";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cash-register:before {
  content: "\f788";
}
.fa-cat:before {
  content: "\f6be";
}
.fa-cc-amazon-pay:before {
  content: "\f42d";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-apple-pay:before {
  content: "\f416";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-centercode:before {
  content: "\f380";
}
.fa-centos:before {
  content: "\f789";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-chair:before {
  content: "\f6c0";
}
.fa-chalkboard:before {
  content: "\f51b";
}
.fa-chalkboard-teacher:before {
  content: "\f51c";
}
.fa-charging-station:before {
  content: "\f5e7";
}
.fa-chart-area:before {
  content: "\f1fe";
}
.fa-chart-bar:before {
  content: "\f080";
}
.fa-chart-line:before {
  content: "\f201";
}
.fa-chart-pie:before {
  content: "\f200";
}
.fa-check:before {
  content: "\f00c";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-check-double:before {
  content: "\f560";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-cheese:before {
  content: "\f7ef";
}
.fa-chess:before {
  content: "\f439";
}
.fa-chess-bishop:before {
  content: "\f43a";
}
.fa-chess-board:before {
  content: "\f43c";
}
.fa-chess-king:before {
  content: "\f43f";
}
.fa-chess-knight:before {
  content: "\f441";
}
.fa-chess-pawn:before {
  content: "\f443";
}
.fa-chess-queen:before {
  content: "\f445";
}
.fa-chess-rook:before {
  content: "\f447";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-chromecast:before {
  content: "\f838";
}
.fa-church:before {
  content: "\f51d";
}
.fa-circle:before {
  content: "\f111";
}
.fa-circle-notch:before {
  content: "\f1ce";
}
.fa-city:before {
  content: "\f64f";
}
.fa-clinic-medical:before {
  content: "\f7f2";
}
.fa-clipboard:before {
  content: "\f328";
}
.fa-clipboard-check:before {
  content: "\f46c";
}
.fa-clipboard-list:before {
  content: "\f46d";
}
.fa-clock:before {
  content: "\f017";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-closed-captioning:before {
  content: "\f20a";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-cloud-download-alt:before {
  content: "\f381";
}
.fa-cloud-meatball:before {
  content: "\f73b";
}
.fa-cloud-moon:before {
  content: "\f6c3";
}
.fa-cloud-moon-rain:before {
  content: "\f73c";
}
.fa-cloud-rain:before {
  content: "\f73d";
}
.fa-cloud-showers-heavy:before {
  content: "\f740";
}
.fa-cloud-sun:before {
  content: "\f6c4";
}
.fa-cloud-sun-rain:before {
  content: "\f743";
}
.fa-cloud-upload-alt:before {
  content: "\f382";
}
.fa-cloudflare:before {
  content: "\e07d";
}
.fa-cloudscale:before {
  content: "\f383";
}
.fa-cloudsmith:before {
  content: "\f384";
}
.fa-cloudversify:before {
  content: "\f385";
}
.fa-cocktail:before {
  content: "\f561";
}
.fa-code:before {
  content: "\f121";
}
.fa-code-branch:before {
  content: "\f126";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cog:before {
  content: "\f013";
}
.fa-cogs:before {
  content: "\f085";
}
.fa-coins:before {
  content: "\f51e";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-comment:before {
  content: "\f075";
}
.fa-comment-alt:before {
  content: "\f27a";
}
.fa-comment-dollar:before {
  content: "\f651";
}
.fa-comment-dots:before {
  content: "\f4ad";
}
.fa-comment-medical:before {
  content: "\f7f5";
}
.fa-comment-slash:before {
  content: "\f4b3";
}
.fa-comments:before {
  content: "\f086";
}
.fa-comments-dollar:before {
  content: "\f653";
}
.fa-compact-disc:before {
  content: "\f51f";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-compress:before {
  content: "\f066";
}
.fa-compress-alt:before {
  content: "\f422";
}
.fa-compress-arrows-alt:before {
  content: "\f78c";
}
.fa-concierge-bell:before {
  content: "\f562";
}
.fa-confluence:before {
  content: "\f78d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-cookie:before {
  content: "\f563";
}
.fa-cookie-bite:before {
  content: "\f564";
}
.fa-copy:before {
  content: "\f0c5";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-cotton-bureau:before {
  content: "\f89e";
}
.fa-couch:before {
  content: "\f4b8";
}
.fa-cpanel:before {
  content: "\f388";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-creative-commons-by:before {
  content: "\f4e7";
}
.fa-creative-commons-nc:before {
  content: "\f4e8";
}
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}
.fa-creative-commons-nd:before {
  content: "\f4eb";
}
.fa-creative-commons-pd:before {
  content: "\f4ec";
}
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}
.fa-creative-commons-remix:before {
  content: "\f4ee";
}
.fa-creative-commons-sa:before {
  content: "\f4ef";
}
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}
.fa-creative-commons-share:before {
  content: "\f4f2";
}
.fa-creative-commons-zero:before {
  content: "\f4f3";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-critical-role:before {
  content: "\f6c9";
}
.fa-crop:before {
  content: "\f125";
}
.fa-crop-alt:before {
  content: "\f565";
}
.fa-cross:before {
  content: "\f654";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-crow:before {
  content: "\f520";
}
.fa-crown:before {
  content: "\f521";
}
.fa-crutch:before {
  content: "\f7f7";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-css3-alt:before {
  content: "\f38b";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-cut:before {
  content: "\f0c4";
}
.fa-cuttlefish:before {
  content: "\f38c";
}
.fa-d-and-d:before {
  content: "\f38d";
}
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}
.fa-dailymotion:before {
  content: "\e052";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-deaf:before {
  content: "\f2a4";
}
.fa-deezer:before {
  content: "\e077";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-democrat:before {
  content: "\f747";
}
.fa-deploydog:before {
  content: "\f38e";
}
.fa-deskpro:before {
  content: "\f38f";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-dev:before {
  content: "\f6cc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-dharmachakra:before {
  content: "\f655";
}
.fa-dhl:before {
  content: "\f790";
}
.fa-diagnoses:before {
  content: "\f470";
}
.fa-diaspora:before {
  content: "\f791";
}
.fa-dice:before {
  content: "\f522";
}
.fa-dice-d20:before {
  content: "\f6cf";
}
.fa-dice-d6:before {
  content: "\f6d1";
}
.fa-dice-five:before {
  content: "\f523";
}
.fa-dice-four:before {
  content: "\f524";
}
.fa-dice-one:before {
  content: "\f525";
}
.fa-dice-six:before {
  content: "\f526";
}
.fa-dice-three:before {
  content: "\f527";
}
.fa-dice-two:before {
  content: "\f528";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-digital-ocean:before {
  content: "\f391";
}
.fa-digital-tachograph:before {
  content: "\f566";
}
.fa-directions:before {
  content: "\f5eb";
}
.fa-discord:before {
  content: "\f392";
}
.fa-discourse:before {
  content: "\f393";
}
.fa-disease:before {
  content: "\f7fa";
}
.fa-divide:before {
  content: "\f529";
}
.fa-dizzy:before {
  content: "\f567";
}
.fa-dna:before {
  content: "\f471";
}
.fa-dochub:before {
  content: "\f394";
}
.fa-docker:before {
  content: "\f395";
}
.fa-dog:before {
  content: "\f6d3";
}
.fa-dollar-sign:before {
  content: "\f155";
}
.fa-dolly:before {
  content: "\f472";
}
.fa-dolly-flatbed:before {
  content: "\f474";
}
.fa-donate:before {
  content: "\f4b9";
}
.fa-door-closed:before {
  content: "\f52a";
}
.fa-door-open:before {
  content: "\f52b";
}
.fa-dot-circle:before {
  content: "\f192";
}
.fa-dove:before {
  content: "\f4ba";
}
.fa-download:before {
  content: "\f019";
}
.fa-draft2digital:before {
  content: "\f396";
}
.fa-drafting-compass:before {
  content: "\f568";
}
.fa-dragon:before {
  content: "\f6d5";
}
.fa-draw-polygon:before {
  content: "\f5ee";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-dribbble-square:before {
  content: "\f397";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-drum:before {
  content: "\f569";
}
.fa-drum-steelpan:before {
  content: "\f56a";
}
.fa-drumstick-bite:before {
  content: "\f6d7";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-dumbbell:before {
  content: "\f44b";
}
.fa-dumpster:before {
  content: "\f793";
}
.fa-dumpster-fire:before {
  content: "\f794";
}
.fa-dungeon:before {
  content: "\f6d9";
}
.fa-dyalog:before {
  content: "\f399";
}
.fa-earlybirds:before {
  content: "\f39a";
}
.fa-ebay:before {
  content: "\f4f4";
}
.fa-edge:before {
  content: "\f282";
}
.fa-edge-legacy:before {
  content: "\e078";
}
.fa-edit:before {
  content: "\f044";
}
.fa-egg:before {
  content: "\f7fb";
}
.fa-eject:before {
  content: "\f052";
}
.fa-elementor:before {
  content: "\f430";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-ello:before {
  content: "\f5f1";
}
.fa-ember:before {
  content: "\f423";
}
.fa-empire:before {
  content: "\f1d1";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-text:before {
  content: "\f658";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-envira:before {
  content: "\f299";
}
.fa-equals:before {
  content: "\f52c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-erlang:before {
  content: "\f39d";
}
.fa-ethereum:before {
  content: "\f42e";
}
.fa-ethernet:before {
  content: "\f796";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-euro-sign:before {
  content: "\f153";
}
.fa-evernote:before {
  content: "\f839";
}
.fa-exchange-alt:before {
  content: "\f362";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-expand:before {
  content: "\f065";
}
.fa-expand-alt:before {
  content: "\f424";
}
.fa-expand-arrows-alt:before {
  content: "\f31e";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-external-link-alt:before {
  content: "\f35d";
}
.fa-external-link-square-alt:before {
  content: "\f360";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-dropper:before {
  content: "\f1fb";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-facebook-messenger:before {
  content: "\f39f";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-fan:before {
  content: "\f863";
}
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-faucet:before {
  content: "\e005";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-feather:before {
  content: "\f52d";
}
.fa-feather-alt:before {
  content: "\f56b";
}
.fa-fedex:before {
  content: "\f797";
}
.fa-fedora:before {
  content: "\f798";
}
.fa-female:before {
  content: "\f182";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-figma:before {
  content: "\f799";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-alt:before {
  content: "\f15c";
}
.fa-file-archive:before {
  content: "\f1c6";
}
.fa-file-audio:before {
  content: "\f1c7";
}
.fa-file-code:before {
  content: "\f1c9";
}
.fa-file-contract:before {
  content: "\f56c";
}
.fa-file-csv:before {
  content: "\f6dd";
}
.fa-file-download:before {
  content: "\f56d";
}
.fa-file-excel:before {
  content: "\f1c3";
}
.fa-file-export:before {
  content: "\f56e";
}
.fa-file-image:before {
  content: "\f1c5";
}
.fa-file-import:before {
  content: "\f56f";
}
.fa-file-invoice:before {
  content: "\f570";
}
.fa-file-invoice-dollar:before {
  content: "\f571";
}
.fa-file-medical:before {
  content: "\f477";
}
.fa-file-medical-alt:before {
  content: "\f478";
}
.fa-file-pdf:before {
  content: "\f1c1";
}
.fa-file-powerpoint:before {
  content: "\f1c4";
}
.fa-file-prescription:before {
  content: "\f572";
}
.fa-file-signature:before {
  content: "\f573";
}
.fa-file-upload:before {
  content: "\f574";
}
.fa-file-video:before {
  content: "\f1c8";
}
.fa-file-word:before {
  content: "\f1c2";
}
.fa-fill:before {
  content: "\f575";
}
.fa-fill-drip:before {
  content: "\f576";
}
.fa-film:before {
  content: "\f008";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-fingerprint:before {
  content: "\f577";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-fire-alt:before {
  content: "\f7e4";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-firefox-browser:before {
  content: "\e007";
}
.fa-first-aid:before {
  content: "\f479";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-first-order-alt:before {
  content: "\f50a";
}
.fa-firstdraft:before {
  content: "\f3a1";
}
.fa-fish:before {
  content: "\f578";
}
.fa-fist-raised:before {
  content: "\f6de";
}
.fa-flag:before {
  content: "\f024";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-flag-usa:before {
  content: "\f74d";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-flipboard:before {
  content: "\f44d";
}
.fa-flushed:before {
  content: "\f579";
}
.fa-fly:before {
  content: "\f417";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-minus:before {
  content: "\f65d";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-folder-plus:before {
  content: "\f65e";
}
.fa-font:before {
  content: "\f031";
}
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-font-awesome-alt:before {
  content: "\f35c";
}
.fa-font-awesome-flag:before {
  content: "\f425";
}
.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-fonticons-fi:before {
  content: "\f3a2";
}
.fa-football-ball:before {
  content: "\f44e";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-freebsd:before {
  content: "\f3a4";
}
.fa-frog:before {
  content: "\f52e";
}
.fa-frown:before {
  content: "\f119";
}
.fa-frown-open:before {
  content: "\f57a";
}
.fa-fulcrum:before {
  content: "\f50b";
}
.fa-funnel-dollar:before {
  content: "\f662";
}
.fa-futbol:before {
  content: "\f1e3";
}
.fa-galactic-republic:before {
  content: "\f50c";
}
.fa-galactic-senate:before {
  content: "\f50d";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-gas-pump:before {
  content: "\f52f";
}
.fa-gavel:before {
  content: "\f0e3";
}
.fa-gem:before {
  content: "\f3a5";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-ghost:before {
  content: "\f6e2";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-gifts:before {
  content: "\f79c";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-git-alt:before {
  content: "\f841";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-github:before {
  content: "\f09b";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-gitkraken:before {
  content: "\f3a6";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-gitter:before {
  content: "\f426";
}
.fa-glass-cheers:before {
  content: "\f79f";
}
.fa-glass-martini:before {
  content: "\f000";
}
.fa-glass-martini-alt:before {
  content: "\f57b";
}
.fa-glass-whiskey:before {
  content: "\f7a0";
}
.fa-glasses:before {
  content: "\f530";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-globe-africa:before {
  content: "\f57c";
}
.fa-globe-americas:before {
  content: "\f57d";
}
.fa-globe-asia:before {
  content: "\f57e";
}
.fa-globe-europe:before {
  content: "\f7a2";
}
.fa-gofore:before {
  content: "\f3a7";
}
.fa-golf-ball:before {
  content: "\f450";
}
.fa-goodreads:before {
  content: "\f3a8";
}
.fa-goodreads-g:before {
  content: "\f3a9";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-google-drive:before {
  content: "\f3aa";
}
.fa-google-pay:before {
  content: "\e079";
}
.fa-google-play:before {
  content: "\f3ab";
}
.fa-google-plus:before {
  content: "\f2b3";
}
.fa-google-plus-g:before {
  content: "\f0d5";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-gopuram:before {
  content: "\f664";
}
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-gratipay:before {
  content: "\f184";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-greater-than:before {
  content: "\f531";
}
.fa-greater-than-equal:before {
  content: "\f532";
}
.fa-grimace:before {
  content: "\f57f";
}
.fa-grin:before {
  content: "\f580";
}
.fa-grin-alt:before {
  content: "\f581";
}
.fa-grin-beam:before {
  content: "\f582";
}
.fa-grin-beam-sweat:before {
  content: "\f583";
}
.fa-grin-hearts:before {
  content: "\f584";
}
.fa-grin-squint:before {
  content: "\f585";
}
.fa-grin-squint-tears:before {
  content: "\f586";
}
.fa-grin-stars:before {
  content: "\f587";
}
.fa-grin-tears:before {
  content: "\f588";
}
.fa-grin-tongue:before {
  content: "\f589";
}
.fa-grin-tongue-squint:before {
  content: "\f58a";
}
.fa-grin-tongue-wink:before {
  content: "\f58b";
}
.fa-grin-wink:before {
  content: "\f58c";
}
.fa-grip-horizontal:before {
  content: "\f58d";
}
.fa-grip-lines:before {
  content: "\f7a4";
}
.fa-grip-lines-vertical:before {
  content: "\f7a5";
}
.fa-grip-vertical:before {
  content: "\f58e";
}
.fa-gripfire:before {
  content: "\f3ac";
}
.fa-grunt:before {
  content: "\f3ad";
}
.fa-guilded:before {
  content: "\e07e";
}
.fa-guitar:before {
  content: "\f7a6";
}
.fa-gulp:before {
  content: "\f3ae";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-hacker-news-square:before {
  content: "\f3af";
}
.fa-hackerrank:before {
  content: "\f5f7";
}
.fa-hamburger:before {
  content: "\f805";
}
.fa-hammer:before {
  content: "\f6e3";
}
.fa-hamsa:before {
  content: "\f665";
}
.fa-hand-holding:before {
  content: "\f4bd";
}
.fa-hand-holding-heart:before {
  content: "\f4be";
}
.fa-hand-holding-medical:before {
  content: "\e05c";
}
.fa-hand-holding-usd:before {
  content: "\f4c0";
}
.fa-hand-holding-water:before {
  content: "\f4c1";
}
.fa-hand-lizard:before {
  content: "\f258";
}
.fa-hand-middle-finger:before {
  content: "\f806";
}
.fa-hand-paper:before {
  content: "\f256";
}
.fa-hand-peace:before {
  content: "\f25b";
}
.fa-hand-point-down:before {
  content: "\f0a7";
}
.fa-hand-point-left:before {
  content: "\f0a5";
}
.fa-hand-point-right:before {
  content: "\f0a4";
}
.fa-hand-point-up:before {
  content: "\f0a6";
}
.fa-hand-pointer:before {
  content: "\f25a";
}
.fa-hand-rock:before {
  content: "\f255";
}
.fa-hand-scissors:before {
  content: "\f257";
}
.fa-hand-sparkles:before {
  content: "\e05d";
}
.fa-hand-spock:before {
  content: "\f259";
}
.fa-hands:before {
  content: "\f4c2";
}
.fa-hands-helping:before {
  content: "\f4c4";
}
.fa-hands-wash:before {
  content: "\e05e";
}
.fa-handshake:before {
  content: "\f2b5";
}
.fa-handshake-alt-slash:before {
  content: "\e05f";
}
.fa-handshake-slash:before {
  content: "\e060";
}
.fa-hanukiah:before {
  content: "\f6e6";
}
.fa-hard-hat:before {
  content: "\f807";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-hat-cowboy:before {
  content: "\f8c0";
}
.fa-hat-cowboy-side:before {
  content: "\f8c1";
}
.fa-hat-wizard:before {
  content: "\f6e8";
}
.fa-hdd:before {
  content: "\f0a0";
}
.fa-head-side-cough:before {
  content: "\e061";
}
.fa-head-side-cough-slash:before {
  content: "\e062";
}
.fa-head-side-mask:before {
  content: "\e063";
}
.fa-head-side-virus:before {
  content: "\e064";
}
.fa-heading:before {
  content: "\f1dc";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-headphones-alt:before {
  content: "\f58f";
}
.fa-headset:before {
  content: "\f590";
}
.fa-heart:before {
  content: "\f004";
}
.fa-heart-broken:before {
  content: "\f7a9";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-helicopter:before {
  content: "\f533";
}
.fa-highlighter:before {
  content: "\f591";
}
.fa-hiking:before {
  content: "\f6ec";
}
.fa-hippo:before {
  content: "\f6ed";
}
.fa-hips:before {
  content: "\f452";
}
.fa-hire-a-helper:before {
  content: "\f3b0";
}
.fa-history:before {
  content: "\f1da";
}
.fa-hive:before {
  content: "\e07f";
}
.fa-hockey-puck:before {
  content: "\f453";
}
.fa-holly-berry:before {
  content: "\f7aa";
}
.fa-home:before {
  content: "\f015";
}
.fa-hooli:before {
  content: "\f427";
}
.fa-hornbill:before {
  content: "\f592";
}
.fa-horse:before {
  content: "\f6f0";
}
.fa-horse-head:before {
  content: "\f7ab";
}
.fa-hospital:before {
  content: "\f0f8";
}
.fa-hospital-alt:before {
  content: "\f47d";
}
.fa-hospital-symbol:before {
  content: "\f47e";
}
.fa-hospital-user:before {
  content: "\f80d";
}
.fa-hot-tub:before {
  content: "\f593";
}
.fa-hotdog:before {
  content: "\f80f";
}
.fa-hotel:before {
  content: "\f594";
}
.fa-hotjar:before {
  content: "\f3b1";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-house-damage:before {
  content: "\f6f1";
}
.fa-house-user:before {
  content: "\e065";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-hryvnia:before {
  content: "\f6f2";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-hubspot:before {
  content: "\f3b2";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-ice-cream:before {
  content: "\f810";
}
.fa-icicles:before {
  content: "\f7ad";
}
.fa-icons:before {
  content: "\f86d";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-id-card:before {
  content: "\f2c2";
}
.fa-id-card-alt:before {
  content: "\f47f";
}
.fa-ideal:before {
  content: "\e013";
}
.fa-igloo:before {
  content: "\f7ae";
}
.fa-image:before {
  content: "\f03e";
}
.fa-images:before {
  content: "\f302";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-industry:before {
  content: "\f275";
}
.fa-infinity:before {
  content: "\f534";
}
.fa-info:before {
  content: "\f129";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-innosoft:before {
  content: "\e080";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-instagram-square:before {
  content: "\e055";
}
.fa-instalod:before {
  content: "\e081";
}
.fa-intercom:before {
  content: "\f7af";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-invision:before {
  content: "\f7b0";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-italic:before {
  content: "\f033";
}
.fa-itch-io:before {
  content: "\f83a";
}
.fa-itunes:before {
  content: "\f3b4";
}
.fa-itunes-note:before {
  content: "\f3b5";
}
.fa-java:before {
  content: "\f4e4";
}
.fa-jedi:before {
  content: "\f669";
}
.fa-jedi-order:before {
  content: "\f50e";
}
.fa-jenkins:before {
  content: "\f3b6";
}
.fa-jira:before {
  content: "\f7b1";
}
.fa-joget:before {
  content: "\f3b7";
}
.fa-joint:before {
  content: "\f595";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-journal-whills:before {
  content: "\f66a";
}
.fa-js:before {
  content: "\f3b8";
}
.fa-js-square:before {
  content: "\f3b9";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-kaaba:before {
  content: "\f66b";
}
.fa-kaggle:before {
  content: "\f5fa";
}
.fa-key:before {
  content: "\f084";
}
.fa-keybase:before {
  content: "\f4f5";
}
.fa-keyboard:before {
  content: "\f11c";
}
.fa-keycdn:before {
  content: "\f3ba";
}
.fa-khanda:before {
  content: "\f66d";
}
.fa-kickstarter:before {
  content: "\f3bb";
}
.fa-kickstarter-k:before {
  content: "\f3bc";
}
.fa-kiss:before {
  content: "\f596";
}
.fa-kiss-beam:before {
  content: "\f597";
}
.fa-kiss-wink-heart:before {
  content: "\f598";
}
.fa-kiwi-bird:before {
  content: "\f535";
}
.fa-korvue:before {
  content: "\f42f";
}
.fa-landmark:before {
  content: "\f66f";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-laptop-code:before {
  content: "\f5fc";
}
.fa-laptop-house:before {
  content: "\e066";
}
.fa-laptop-medical:before {
  content: "\f812";
}
.fa-laravel:before {
  content: "\f3bd";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-laugh:before {
  content: "\f599";
}
.fa-laugh-beam:before {
  content: "\f59a";
}
.fa-laugh-squint:before {
  content: "\f59b";
}
.fa-laugh-wink:before {
  content: "\f59c";
}
.fa-layer-group:before {
  content: "\f5fd";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-lemon:before {
  content: "\f094";
}
.fa-less:before {
  content: "\f41d";
}
.fa-less-than:before {
  content: "\f536";
}
.fa-less-than-equal:before {
  content: "\f537";
}
.fa-level-down-alt:before {
  content: "\f3be";
}
.fa-level-up-alt:before {
  content: "\f3bf";
}
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-lightbulb:before {
  content: "\f0eb";
}
.fa-line:before {
  content: "\f3c0";
}
.fa-link:before {
  content: "\f0c1";
}
.fa-linkedin:before {
  content: "\f08c";
}
.fa-linkedin-in:before {
  content: "\f0e1";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-lira-sign:before {
  content: "\f195";
}
.fa-list:before {
  content: "\f03a";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-lock:before {
  content: "\f023";
}
.fa-lock-open:before {
  content: "\f3c1";
}
.fa-long-arrow-alt-down:before {
  content: "\f309";
}
.fa-long-arrow-alt-left:before {
  content: "\f30a";
}
.fa-long-arrow-alt-right:before {
  content: "\f30b";
}
.fa-long-arrow-alt-up:before {
  content: "\f30c";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-luggage-cart:before {
  content: "\f59d";
}
.fa-lungs:before {
  content: "\f604";
}
.fa-lungs-virus:before {
  content: "\e067";
}
.fa-lyft:before {
  content: "\f3c3";
}
.fa-magento:before {
  content: "\f3c4";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-mail-bulk:before {
  content: "\f674";
}
.fa-mailchimp:before {
  content: "\f59e";
}
.fa-male:before {
  content: "\f183";
}
.fa-mandalorian:before {
  content: "\f50f";
}
.fa-map:before {
  content: "\f279";
}
.fa-map-marked:before {
  content: "\f59f";
}
.fa-map-marked-alt:before {
  content: "\f5a0";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-map-marker-alt:before {
  content: "\f3c5";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-markdown:before {
  content: "\f60f";
}
.fa-marker:before {
  content: "\f5a1";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mask:before {
  content: "\f6fa";
}
.fa-mastodon:before {
  content: "\f4f6";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-mdb:before {
  content: "\f8ca";
}
.fa-medal:before {
  content: "\f5a2";
}
.fa-medapps:before {
  content: "\f3c6";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-medium-m:before {
  content: "\f3c7";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-medrt:before {
  content: "\f3c8";
}
.fa-meetup:before {
  content: "\f2e0";
}
.fa-megaport:before {
  content: "\f5a3";
}
.fa-meh:before {
  content: "\f11a";
}
.fa-meh-blank:before {
  content: "\f5a4";
}
.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}
.fa-memory:before {
  content: "\f538";
}
.fa-mendeley:before {
  content: "\f7b3";
}
.fa-menorah:before {
  content: "\f676";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-meteor:before {
  content: "\f753";
}
.fa-microblog:before {
  content: "\e01a";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-alt:before {
  content: "\f3c9";
}
.fa-microphone-alt-slash:before {
  content: "\f539";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-microscope:before {
  content: "\f610";
}
.fa-microsoft:before {
  content: "\f3ca";
}
.fa-minus:before {
  content: "\f068";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-mitten:before {
  content: "\f7b5";
}
.fa-mix:before {
  content: "\f3cb";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-mixer:before {
  content: "\e056";
}
.fa-mizuni:before {
  content: "\f3cc";
}
.fa-mobile:before {
  content: "\f10b";
}
.fa-mobile-alt:before {
  content: "\f3cd";
}
.fa-modx:before {
  content: "\f285";
}
.fa-monero:before {
  content: "\f3d0";
}
.fa-money-bill:before {
  content: "\f0d6";
}
.fa-money-bill-alt:before {
  content: "\f3d1";
}
.fa-money-bill-wave:before {
  content: "\f53a";
}
.fa-money-bill-wave-alt:before {
  content: "\f53b";
}
.fa-money-check:before {
  content: "\f53c";
}
.fa-money-check-alt:before {
  content: "\f53d";
}
.fa-monument:before {
  content: "\f5a6";
}
.fa-moon:before {
  content: "\f186";
}
.fa-mortar-pestle:before {
  content: "\f5a7";
}
.fa-mosque:before {
  content: "\f678";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-mountain:before {
  content: "\f6fc";
}
.fa-mouse:before {
  content: "\f8cc";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-mug-hot:before {
  content: "\f7b6";
}
.fa-music:before {
  content: "\f001";
}
.fa-napster:before {
  content: "\f3d2";
}
.fa-neos:before {
  content: "\f612";
}
.fa-network-wired:before {
  content: "\f6ff";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-newspaper:before {
  content: "\f1ea";
}
.fa-nimblr:before {
  content: "\f5a8";
}
.fa-node:before {
  content: "\f419";
}
.fa-node-js:before {
  content: "\f3d3";
}
.fa-not-equal:before {
  content: "\f53e";
}
.fa-notes-medical:before {
  content: "\f481";
}
.fa-npm:before {
  content: "\f3d4";
}
.fa-ns8:before {
  content: "\f3d5";
}
.fa-nutritionix:before {
  content: "\f3d6";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-octopus-deploy:before {
  content: "\e082";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-oil-can:before {
  content: "\f613";
}
.fa-old-republic:before {
  content: "\f510";
}
.fa-om:before {
  content: "\f679";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-orcid:before {
  content: "\f8d2";
}
.fa-osi:before {
  content: "\f41a";
}
.fa-otter:before {
  content: "\f700";
}
.fa-outdent:before {
  content: "\f03b";
}
.fa-page4:before {
  content: "\f3d7";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-pager:before {
  content: "\f815";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-paint-roller:before {
  content: "\f5aa";
}
.fa-palette:before {
  content: "\f53f";
}
.fa-palfed:before {
  content: "\f3d8";
}
.fa-pallet:before {
  content: "\f482";
}
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-parachute-box:before {
  content: "\f4cd";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-parking:before {
  content: "\f540";
}
.fa-passport:before {
  content: "\f5ab";
}
.fa-pastafarianism:before {
  content: "\f67b";
}
.fa-paste:before {
  content: "\f0ea";
}
.fa-patreon:before {
  content: "\f3d9";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-peace:before {
  content: "\f67c";
}
.fa-pen:before {
  content: "\f304";
}
.fa-pen-alt:before {
  content: "\f305";
}
.fa-pen-fancy:before {
  content: "\f5ac";
}
.fa-pen-nib:before {
  content: "\f5ad";
}
.fa-pen-square:before {
  content: "\f14b";
}
.fa-pencil-alt:before {
  content: "\f303";
}
.fa-pencil-ruler:before {
  content: "\f5ae";
}
.fa-penny-arcade:before {
  content: "\f704";
}
.fa-people-arrows:before {
  content: "\e068";
}
.fa-people-carry:before {
  content: "\f4ce";
}
.fa-pepper-hot:before {
  content: "\f816";
}
.fa-perbyte:before {
  content: "\e083";
}
.fa-percent:before {
  content: "\f295";
}
.fa-percentage:before {
  content: "\f541";
}
.fa-periscope:before {
  content: "\f3da";
}
.fa-person-booth:before {
  content: "\f756";
}
.fa-phabricator:before {
  content: "\f3db";
}
.fa-phoenix-framework:before {
  content: "\f3dc";
}
.fa-phoenix-squadron:before {
  content: "\f511";
}
.fa-phone:before {
  content: "\f095";
}
.fa-phone-alt:before {
  content: "\f879";
}
.fa-phone-slash:before {
  content: "\f3dd";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-phone-square-alt:before {
  content: "\f87b";
}
.fa-phone-volume:before {
  content: "\f2a0";
}
.fa-photo-video:before {
  content: "\f87c";
}
.fa-php:before {
  content: "\f457";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-pied-piper-hat:before {
  content: "\f4e5";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-square:before {
  content: "\e01e";
}
.fa-piggy-bank:before {
  content: "\f4d3";
}
.fa-pills:before {
  content: "\f484";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-pizza-slice:before {
  content: "\f818";
}
.fa-place-of-worship:before {
  content: "\f67f";
}
.fa-plane:before {
  content: "\f072";
}
.fa-plane-arrival:before {
  content: "\f5af";
}
.fa-plane-departure:before {
  content: "\f5b0";
}
.fa-plane-slash:before {
  content: "\e069";
}
.fa-play:before {
  content: "\f04b";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-playstation:before {
  content: "\f3df";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-plus:before {
  content: "\f067";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-poll:before {
  content: "\f681";
}
.fa-poll-h:before {
  content: "\f682";
}
.fa-poo:before {
  content: "\f2fe";
}
.fa-poo-storm:before {
  content: "\f75a";
}
.fa-poop:before {
  content: "\f619";
}
.fa-portrait:before {
  content: "\f3e0";
}
.fa-pound-sign:before {
  content: "\f154";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-pray:before {
  content: "\f683";
}
.fa-praying-hands:before {
  content: "\f684";
}
.fa-prescription:before {
  content: "\f5b1";
}
.fa-prescription-bottle:before {
  content: "\f485";
}
.fa-prescription-bottle-alt:before {
  content: "\f486";
}
.fa-print:before {
  content: "\f02f";
}
.fa-procedures:before {
  content: "\f487";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-project-diagram:before {
  content: "\f542";
}
.fa-pump-medical:before {
  content: "\e06a";
}
.fa-pump-soap:before {
  content: "\e06b";
}
.fa-pushed:before {
  content: "\f3e1";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-python:before {
  content: "\f3e2";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-question:before {
  content: "\f128";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-quidditch:before {
  content: "\f458";
}
.fa-quinscape:before {
  content: "\f459";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-quran:before {
  content: "\f687";
}
.fa-r-project:before {
  content: "\f4f7";
}
.fa-radiation:before {
  content: "\f7b9";
}
.fa-radiation-alt:before {
  content: "\f7ba";
}
.fa-rainbow:before {
  content: "\f75b";
}
.fa-random:before {
  content: "\f074";
}
.fa-raspberry-pi:before {
  content: "\f7bb";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-react:before {
  content: "\f41b";
}
.fa-reacteurope:before {
  content: "\f75d";
}
.fa-readme:before {
  content: "\f4d5";
}
.fa-rebel:before {
  content: "\f1d0";
}
.fa-receipt:before {
  content: "\f543";
}
.fa-record-vinyl:before {
  content: "\f8d9";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-red-river:before {
  content: "\f3e3";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-redhat:before {
  content: "\f7bc";
}
.fa-redo:before {
  content: "\f01e";
}
.fa-redo-alt:before {
  content: "\f2f9";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-remove-format:before {
  content: "\f87d";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-reply:before {
  content: "\f3e5";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-replyd:before {
  content: "\f3e6";
}
.fa-republican:before {
  content: "\f75e";
}
.fa-researchgate:before {
  content: "\f4f8";
}
.fa-resolving:before {
  content: "\f3e7";
}
.fa-restroom:before {
  content: "\f7bd";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-rev:before {
  content: "\f5b2";
}
.fa-ribbon:before {
  content: "\f4d6";
}
.fa-ring:before {
  content: "\f70b";
}
.fa-road:before {
  content: "\f018";
}
.fa-robot:before {
  content: "\f544";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-rocketchat:before {
  content: "\f3e8";
}
.fa-rockrms:before {
  content: "\f3e9";
}
.fa-route:before {
  content: "\f4d7";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-ruble-sign:before {
  content: "\f158";
}
.fa-ruler:before {
  content: "\f545";
}
.fa-ruler-combined:before {
  content: "\f546";
}
.fa-ruler-horizontal:before {
  content: "\f547";
}
.fa-ruler-vertical:before {
  content: "\f548";
}
.fa-running:before {
  content: "\f70c";
}
.fa-rupee-sign:before {
  content: "\f156";
}
.fa-rust:before {
  content: "\e07a";
}
.fa-sad-cry:before {
  content: "\f5b3";
}
.fa-sad-tear:before {
  content: "\f5b4";
}
.fa-safari:before {
  content: "\f267";
}
.fa-salesforce:before {
  content: "\f83b";
}
.fa-sass:before {
  content: "\f41e";
}
.fa-satellite:before {
  content: "\f7bf";
}
.fa-satellite-dish:before {
  content: "\f7c0";
}
.fa-save:before {
  content: "\f0c7";
}
.fa-schlix:before {
  content: "\f3ea";
}
.fa-school:before {
  content: "\f549";
}
.fa-screwdriver:before {
  content: "\f54a";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-scroll:before {
  content: "\f70e";
}
.fa-sd-card:before {
  content: "\f7c2";
}
.fa-search:before {
  content: "\f002";
}
.fa-search-dollar:before {
  content: "\f688";
}
.fa-search-location:before {
  content: "\f689";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-searchengin:before {
  content: "\f3eb";
}
.fa-seedling:before {
  content: "\f4d8";
}
.fa-sellcast:before {
  content: "\f2da";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-server:before {
  content: "\f233";
}
.fa-servicestack:before {
  content: "\f3ec";
}
.fa-shapes:before {
  content: "\f61f";
}
.fa-share:before {
  content: "\f064";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-shekel-sign:before {
  content: "\f20b";
}
.fa-shield-alt:before {
  content: "\f3ed";
}
.fa-shield-virus:before {
  content: "\e06c";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-shipping-fast:before {
  content: "\f48b";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-shoe-prints:before {
  content: "\f54b";
}
.fa-shopify:before {
  content: "\e057";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-shopware:before {
  content: "\f5b5";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-shuttle-van:before {
  content: "\f5b6";
}
.fa-sign:before {
  content: "\f4d9";
}
.fa-sign-in-alt:before {
  content: "\f2f6";
}
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-sign-out-alt:before {
  content: "\f2f5";
}
.fa-signal:before {
  content: "\f012";
}
.fa-signature:before {
  content: "\f5b7";
}
.fa-sim-card:before {
  content: "\f7c4";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-sink:before {
  content: "\e06d";
}
.fa-sistrix:before {
  content: "\f3ee";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-sith:before {
  content: "\f512";
}
.fa-skating:before {
  content: "\f7c5";
}
.fa-sketch:before {
  content: "\f7c6";
}
.fa-skiing:before {
  content: "\f7c9";
}
.fa-skiing-nordic:before {
  content: "\f7ca";
}
.fa-skull:before {
  content: "\f54c";
}
.fa-skull-crossbones:before {
  content: "\f714";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-slack:before {
  content: "\f198";
}
.fa-slack-hash:before {
  content: "\f3ef";
}
.fa-slash:before {
  content: "\f715";
}
.fa-sleigh:before {
  content: "\f7cc";
}
.fa-sliders-h:before {
  content: "\f1de";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-smile:before {
  content: "\f118";
}
.fa-smile-beam:before {
  content: "\f5b8";
}
.fa-smile-wink:before {
  content: "\f4da";
}
.fa-smog:before {
  content: "\f75f";
}
.fa-smoking:before {
  content: "\f48d";
}
.fa-smoking-ban:before {
  content: "\f54d";
}
.fa-sms:before {
  content: "\f7cd";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-snowboarding:before {
  content: "\f7ce";
}
.fa-snowflake:before {
  content: "\f2dc";
}
.fa-snowman:before {
  content: "\f7d0";
}
.fa-snowplow:before {
  content: "\f7d2";
}
.fa-soap:before {
  content: "\e06e";
}
.fa-socks:before {
  content: "\f696";
}
.fa-solar-panel:before {
  content: "\f5ba";
}
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-alpha-down:before {
  content: "\f15d";
}
.fa-sort-alpha-down-alt:before {
  content: "\f881";
}
.fa-sort-alpha-up:before {
  content: "\f15e";
}
.fa-sort-alpha-up-alt:before {
  content: "\f882";
}
.fa-sort-amount-down:before {
  content: "\f160";
}
.fa-sort-amount-down-alt:before {
  content: "\f884";
}
.fa-sort-amount-up:before {
  content: "\f161";
}
.fa-sort-amount-up-alt:before {
  content: "\f885";
}
.fa-sort-down:before {
  content: "\f0dd";
}
.fa-sort-numeric-down:before {
  content: "\f162";
}
.fa-sort-numeric-down-alt:before {
  content: "\f886";
}
.fa-sort-numeric-up:before {
  content: "\f163";
}
.fa-sort-numeric-up-alt:before {
  content: "\f887";
}
.fa-sort-up:before {
  content: "\f0de";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-sourcetree:before {
  content: "\f7d3";
}
.fa-spa:before {
  content: "\f5bb";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-speakap:before {
  content: "\f3f3";
}
.fa-speaker-deck:before {
  content: "\f83c";
}
.fa-spell-check:before {
  content: "\f891";
}
.fa-spider:before {
  content: "\f717";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-splotch:before {
  content: "\f5bc";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-spray-can:before {
  content: "\f5bd";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-square-full:before {
  content: "\f45c";
}
.fa-square-root-alt:before {
  content: "\f698";
}
.fa-squarespace:before {
  content: "\f5be";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-stackpath:before {
  content: "\f842";
}
.fa-stamp:before {
  content: "\f5bf";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-and-crescent:before {
  content: "\f699";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-star-half-alt:before {
  content: "\f5c0";
}
.fa-star-of-david:before {
  content: "\f69a";
}
.fa-star-of-life:before {
  content: "\f621";
}
.fa-staylinked:before {
  content: "\f3f5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-steam-symbol:before {
  content: "\f3f6";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-sticker-mule:before {
  content: "\f3f7";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stopwatch:before {
  content: "\f2f2";
}
.fa-stopwatch-20:before {
  content: "\e06f";
}
.fa-store:before {
  content: "\f54e";
}
.fa-store-alt:before {
  content: "\f54f";
}
.fa-store-alt-slash:before {
  content: "\e070";
}
.fa-store-slash:before {
  content: "\e071";
}
.fa-strava:before {
  content: "\f428";
}
.fa-stream:before {
  content: "\f550";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-stripe:before {
  content: "\f429";
}
.fa-stripe-s:before {
  content: "\f42a";
}
.fa-stroopwafel:before {
  content: "\f551";
}
.fa-studiovinari:before {
  content: "\f3f8";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-subway:before {
  content: "\f239";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-suitcase-rolling:before {
  content: "\f5c1";
}
.fa-sun:before {
  content: "\f185";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-supple:before {
  content: "\f3f9";
}
.fa-surprise:before {
  content: "\f5c2";
}
.fa-suse:before {
  content: "\f7d6";
}
.fa-swatchbook:before {
  content: "\f5c3";
}
.fa-swift:before {
  content: "\f8e1";
}
.fa-swimmer:before {
  content: "\f5c4";
}
.fa-swimming-pool:before {
  content: "\f5c5";
}
.fa-symfony:before {
  content: "\f83d";
}
.fa-synagogue:before {
  content: "\f69b";
}
.fa-sync:before {
  content: "\f021";
}
.fa-sync-alt:before {
  content: "\f2f1";
}
.fa-syringe:before {
  content: "\f48e";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-table-tennis:before {
  content: "\f45d";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-tablet-alt:before {
  content: "\f3fa";
}
.fa-tablets:before {
  content: "\f490";
}
.fa-tachometer-alt:before {
  content: "\f3fd";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-tape:before {
  content: "\f4db";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-taxi:before {
  content: "\f1ba";
}
.fa-teamspeak:before {
  content: "\f4f9";
}
.fa-teeth:before {
  content: "\f62e";
}
.fa-teeth-open:before {
  content: "\f62f";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-telegram-plane:before {
  content: "\f3fe";
}
.fa-temperature-high:before {
  content: "\f769";
}
.fa-temperature-low:before {
  content: "\f76b";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-tenge:before {
  content: "\f7d7";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-the-red-yeti:before {
  content: "\f69d";
}
.fa-theater-masks:before {
  content: "\f630";
}
.fa-themeco:before {
  content: "\f5c6";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-thermometer:before {
  content: "\f491";
}
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-think-peaks:before {
  content: "\f731";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbtack:before {
  content: "\f08d";
}
.fa-ticket-alt:before {
  content: "\f3ff";
}
.fa-tiktok:before {
  content: "\e07b";
}
.fa-times:before {
  content: "\f00d";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-tint:before {
  content: "\f043";
}
.fa-tint-slash:before {
  content: "\f5c7";
}
.fa-tired:before {
  content: "\f5c8";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-toilet:before {
  content: "\f7d8";
}
.fa-toilet-paper:before {
  content: "\f71e";
}
.fa-toilet-paper-slash:before {
  content: "\e072";
}
.fa-toolbox:before {
  content: "\f552";
}
.fa-tools:before {
  content: "\f7d9";
}
.fa-tooth:before {
  content: "\f5c9";
}
.fa-torah:before {
  content: "\f6a0";
}
.fa-torii-gate:before {
  content: "\f6a1";
}
.fa-tractor:before {
  content: "\f722";
}
.fa-trade-federation:before {
  content: "\f513";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-traffic-light:before {
  content: "\f637";
}
.fa-trailer:before {
  content: "\e041";
}
.fa-train:before {
  content: "\f238";
}
.fa-tram:before {
  content: "\f7da";
}
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-trash-alt:before {
  content: "\f2ed";
}
.fa-trash-restore:before {
  content: "\f829";
}
.fa-trash-restore-alt:before {
  content: "\f82a";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-trello:before {
  content: "\f181";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-truck-loading:before {
  content: "\f4de";
}
.fa-truck-monster:before {
  content: "\f63b";
}
.fa-truck-moving:before {
  content: "\f4df";
}
.fa-truck-pickup:before {
  content: "\f63c";
}
.fa-tshirt:before {
  content: "\f553";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-tv:before {
  content: "\f26c";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-typo3:before {
  content: "\f42b";
}
.fa-uber:before {
  content: "\f402";
}
.fa-ubuntu:before {
  content: "\f7df";
}
.fa-uikit:before {
  content: "\f403";
}
.fa-umbraco:before {
  content: "\f8e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-umbrella-beach:before {
  content: "\f5ca";
}
.fa-uncharted:before {
  content: "\e084";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-undo:before {
  content: "\f0e2";
}
.fa-undo-alt:before {
  content: "\f2ea";
}
.fa-uniregistry:before {
  content: "\f404";
}
.fa-unity:before {
  content: "\e049";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-university:before {
  content: "\f19c";
}
.fa-unlink:before {
  content: "\f127";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-unsplash:before {
  content: "\e07c";
}
.fa-untappd:before {
  content: "\f405";
}
.fa-upload:before {
  content: "\f093";
}
.fa-ups:before {
  content: "\f7e0";
}
.fa-usb:before {
  content: "\f287";
}
.fa-user:before {
  content: "\f007";
}
.fa-user-alt:before {
  content: "\f406";
}
.fa-user-alt-slash:before {
  content: "\f4fa";
}
.fa-user-astronaut:before {
  content: "\f4fb";
}
.fa-user-check:before {
  content: "\f4fc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-clock:before {
  content: "\f4fd";
}
.fa-user-cog:before {
  content: "\f4fe";
}
.fa-user-edit:before {
  content: "\f4ff";
}
.fa-user-friends:before {
  content: "\f500";
}
.fa-user-graduate:before {
  content: "\f501";
}
.fa-user-injured:before {
  content: "\f728";
}
.fa-user-lock:before {
  content: "\f502";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-user-minus:before {
  content: "\f503";
}
.fa-user-ninja:before {
  content: "\f504";
}
.fa-user-nurse:before {
  content: "\f82f";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-user-shield:before {
  content: "\f505";
}
.fa-user-slash:before {
  content: "\f506";
}
.fa-user-tag:before {
  content: "\f507";
}
.fa-user-tie:before {
  content: "\f508";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-users-cog:before {
  content: "\f509";
}
.fa-users-slash:before {
  content: "\e073";
}
.fa-usps:before {
  content: "\f7e1";
}
.fa-ussunnah:before {
  content: "\f407";
}
.fa-utensil-spoon:before {
  content: "\f2e5";
}
.fa-utensils:before {
  content: "\f2e7";
}
.fa-vaadin:before {
  content: "\f408";
}
.fa-vector-square:before {
  content: "\f5cb";
}
.fa-venus:before {
  content: "\f221";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-vest:before {
  content: "\e085";
}
.fa-vest-patches:before {
  content: "\e086";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-vial:before {
  content: "\f492";
}
.fa-vials:before {
  content: "\f493";
}
.fa-viber:before {
  content: "\f409";
}
.fa-video:before {
  content: "\f03d";
}
.fa-video-slash:before {
  content: "\f4e2";
}
.fa-vihara:before {
  content: "\f6a7";
}
.fa-vimeo:before {
  content: "\f40a";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-vimeo-v:before {
  content: "\f27d";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-virus:before {
  content: "\e074";
}
.fa-virus-slash:before {
  content: "\e075";
}
.fa-viruses:before {
  content: "\e076";
}
.fa-vk:before {
  content: "\f189";
}
.fa-vnv:before {
  content: "\f40b";
}
.fa-voicemail:before {
  content: "\f897";
}
.fa-volleyball-ball:before {
  content: "\f45f";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-mute:before {
  content: "\f6a9";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-vote-yea:before {
  content: "\f772";
}
.fa-vr-cardboard:before {
  content: "\f729";
}
.fa-vuejs:before {
  content: "\f41f";
}
.fa-walking:before {
  content: "\f554";
}
.fa-wallet:before {
  content: "\f555";
}
.fa-warehouse:before {
  content: "\f494";
}
.fa-watchman-monitoring:before {
  content: "\e087";
}
.fa-water:before {
  content: "\f773";
}
.fa-wave-square:before {
  content: "\f83e";
}
.fa-waze:before {
  content: "\f83f";
}
.fa-weebly:before {
  content: "\f5cc";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-weight:before {
  content: "\f496";
}
.fa-weight-hanging:before {
  content: "\f5cd";
}
.fa-weixin:before {
  content: "\f1d7";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-whatsapp-square:before {
  content: "\f40c";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-whmcs:before {
  content: "\f40d";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-wind:before {
  content: "\f72e";
}
.fa-window-close:before {
  content: "\f410";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-wine-bottle:before {
  content: "\f72f";
}
.fa-wine-glass:before {
  content: "\f4e3";
}
.fa-wine-glass-alt:before {
  content: "\f5ce";
}
.fa-wix:before {
  content: "\f5cf";
}
.fa-wizards-of-the-coast:before {
  content: "\f730";
}
.fa-wodu:before {
  content: "\e088";
}
.fa-wolf-pack-battalion:before {
  content: "\f514";
}
.fa-won-sign:before {
  content: "\f159";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-wordpress-simple:before {
  content: "\f411";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-wpressr:before {
  content: "\f3e4";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-x-ray:before {
  content: "\f497";
}
.fa-xbox:before {
  content: "\f412";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-yammer:before {
  content: "\f840";
}
.fa-yandex:before {
  content: "\f413";
}
.fa-yandex-international:before {
  content: "\f414";
}
.fa-yarn:before {
  content: "\f7e3";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-yen-sign:before {
  content: "\f157";
}
.fa-yin-yang:before {
  content: "\f6ad";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-youtube-square:before {
  content: "\f431";
}
.fa-zhihu:before {
  content: "\f63f";
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.idsk-header-extended {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-top: 30px;
  color: #003078;
  background: #ffffff;
}
@media print {
  .idsk-header-extended {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header-extended {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header-extended::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #003078;
}
.idsk-header-extended__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: wrap row;
  flex-flow: wrap row;
}
.idsk-header-extended__container:after {
  content: "";
  display: block;
  clear: both;
}
.idsk-header-extended__content {
  width: 100%;
}
@media (min-width: 48.0625em) {
  .idsk-header-extended__content {
    float: left;
    margin-left: -30px;
    margin-right: -30px;
  }
}
.idsk-header__link {
  text-decoration: none;
}
.idsk-header__link:link, .idsk-header__link:visited {
  color: #ffffff;
}
.idsk-header__link:hover {
  text-decoration: underline;
}
.idsk-header__link:focus, .idsk-header__link:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended__logo {
  padding-left: 0;
  padding-bottom: 15px;
  margin-right: auto;
}
@media (max-width: 19.99em) {
  .idsk-header-extended__logo {
    width: 70%;
  }
}
@media (max-width: 40.0525em) {
  .idsk-header-extended__logo {
    padding-bottom: 15px;
    max-width: 70%;
  }
}
@media (min-width: 48.0625em) {
  .idsk-header-extended__logo {
    padding: 0 0 30px 0;
  }
}
.idsk-header-extended__logo > a {
  display: initial;
}
.idsk-header-extended__logo > a:focus svg, .idsk-header-extended__logo > a:active svg, .idsk-header-extended__logo > a:focus img, .idsk-header-extended__logo > a:active img {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended__logo img, .idsk-header-extended__logo svg {
  height: 100%;
  max-height: 50px;
  max-width: 100%;
}
@media (min-width: 48.0625em) {
  .idsk-header-extended__logo img, .idsk-header-extended__logo svg {
    max-height: 100px;
  }
}
.idsk-header-extended__logotype-crown {
  max-width: 246px;
  position: relative;
  fill: currentColor;
}
.idsk-header-extended__logotype-crown-fallback-image {
  width: 36px;
  height: 32px;
  border: 0;
}
.idsk-header-extended__logotype-crown-mobile,
.idsk-header-extended__logotype-crown-mobile-navigation,
.idsk-header-extended__logotype-crown-mobile-small-navigation {
  display: none;
}
@media (max-width: 48.0525em) {
  .idsk-header-extended.idsk-header-extended--shrink .idsk-header-extended__logo {
    padding-bottom: 15px;
  }
  .idsk-header-extended.idsk-header-extended--shrink .idsk-header-extended__logotype-crown,
.idsk-header-extended.idsk-header-extended--shrink .idsk-header-extended__logotype-crown-mobile-navigation {
    display: none;
  }
  .idsk-header-extended.idsk-header-extended--shrink .idsk-header-extended__logotype-crown-mobile {
    display: inline-block;
  }
}
@media (max-width: 48.0525em) {
  .idsk-header-extended__mobile,
.idsk-header-extended__search,
.idsk-header-extended__language,
.idsk-header-extended__social,
.idsk-header-extended__content {
    display: none;
  }
}
.idsk-header-extended__search {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-right: 20px;
}
@media print {
  .idsk-header-extended__search {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended__search {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header-extended__search {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.idsk-header-extended__search-label {
  color: #0b0c0c;
  position: absolute;
  padding: 5px;
}
.idsk-header-extended__search-label.idsk-header-extended__search-input--focus {
  z-index: -1;
}
.idsk-header-extended__search-form:focus-within .idsk-header-extended__search-label {
  z-index: -1;
}
.idsk-header-extended__search .govuk-input {
  height: 30px;
  width: 200px;
  border: 1px solid #0b0c0c;
}
.idsk-header-extended__search .govuk-input:focus {
  z-index: 2;
}
.idsk-header-extended__search .govuk-button {
  height: 30px;
  width: 28px;
  font-size: 12px;
  margin-left: -4px;
  padding-top: 7px;
  padding-left: 5px;
  background-color: #0065b3;
  box-shadow: none;
}
.idsk-header-extended__language {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  padding: 0 15px 5px 0;
}
@media print {
  .idsk-header-extended__language {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended__language {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-extended__language {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-header-extended__language--active .idsk-header-extended__language-button::after {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.idsk-header-extended__language--active .idsk-header-extended__language-list {
  display: block;
  position: absolute;
}
.idsk-header-extended__language-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  background: none;
  border: none;
  padding-right: 30px;
}
@media print {
  .idsk-header-extended__language-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended__language-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-extended__language-button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-header-extended__language-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
  outline: none;
}
.idsk-header-extended__language-button:after {
  position: absolute;
  margin-top: 8px;
  margin-left: 10px;
  border-style: solid;
  border-width: 5px 5px 0;
  border-color: #003078 transparent transparent;
  content: "";
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.idsk-header-extended__language-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin-top: 10px;
  background-color: #ffffff;
}
.idsk-header-extended__language-list-item {
  padding: 5px;
}
.idsk-header-extended__language-list-link {
  color: #003078;
  display: block;
  text-decoration: none;
}
.idsk-header-extended__language-list-link:hover {
  text-decoration: underline;
}
.idsk-header-extended__language-list-link:focus, .idsk-header-extended__language-list-link:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended__social-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.idsk-header-extended__social-item {
  display: inline-block;
  padding: 0 4px;
}
.idsk-header-extended__social-link {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #003078;
}
@media print {
  .idsk-header-extended__social-link {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended__social-link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-extended__social-link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-header-extended__social-link:focus, .idsk-header-extended__social-link:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended--left {
  margin-left: auto;
}
.idsk-header-extended__navigation {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.idsk-header-extended__navigation-item {
  padding: 15px 0;
}
@media (min-width: 48.0625em) {
  .idsk-header-extended__navigation-item {
    display: inline-block;
    border: none;
    padding: 15px 30px;
  }
}
.idsk-header-extended__navigation-item > a {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
  text-decoration: none;
}
@media print {
  .idsk-header-extended__navigation-item > a {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended__navigation-item > a {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
@media print {
  .idsk-header-extended__navigation-item > a {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.idsk-header-extended__navigation-item > a:link, .idsk-header-extended__navigation-item > a:hover, .idsk-header-extended__navigation-item > a:visited {
  color: #003078;
}
.idsk-header-extended__navigation-item > a:focus, .idsk-header-extended__navigation-item > a:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended__navigation-item .idsk-header-extended__arrow::after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 8.66px 5px 0 5px;
  border-top-color: inherit;
  border-color: #ffffff transparent transparent;
  content: "";
  position: relative;
  left: 10px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (min-width: 48.0625em) {
  .idsk-header-extended__navigation-item .idsk-header-extended__arrow::after {
    display: none;
  }
}
.idsk-header-extended__navigation-item--active {
  background-color: #003078;
}
.idsk-header-extended__navigation-item--active a:link, .idsk-header-extended__navigation-item--active a:hover, .idsk-header-extended__navigation-item--active a:visited {
  color: #ffffff;
}
.idsk-header-extended__navigation-item--active a:focus, .idsk-header-extended__navigation-item--active a:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended__navigation-item--active .idsk-header-extended__arrow::after {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.idsk-header-extended__navigation-item--active .idsk-header-extended__navigation-submenu {
  display: block;
}
.idsk-header-extended__navigation-submenu {
  display: none;
  left: 0;
  background-color: #003078;
  width: 100%;
  padding: 0;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .idsk-header-extended__navigation-submenu {
    position: absolute;
    padding: 20px 0;
    margin-top: 15px;
  }
}
.idsk-header-extended__navigation-submenu a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
  text-decoration: none;
}
.idsk-header-extended__navigation-submenu a:hover {
  text-decoration: underline;
  color: #ffffff;
  background: none;
}
.idsk-header-extended__navigation-submenu a:focus, .idsk-header-extended__navigation-submenu a:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
.idsk-header-extended__navigation-submenu ul {
  display: block;
  padding-left: 5px;
}
.idsk-header-extended__navigation-submenu ul li {
  display: inline-block;
  padding: 5px 20px;
  width: 20%;
  color: #ffffff;
}
@media (max-width: 48.0525em) {
  .idsk-header-extended__navigation-submenu ul li {
    width: 100%;
    padding: 0;
    padding-bottom: 10px;
  }
}
.idsk-header-extended__navigation-submenu ul li:before {
  content: "•";
  color: #ffffff;
  font-weight: bolder;
  display: inline-block;
  width: 20px;
  font-size: 20px;
}
.idsk-header-extended__navigation-submenu ul li i {
  font-size: 10px;
  padding-right: 8px;
}
.idsk-header-extended__menu-button {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  border: 0;
  color: #003078;
  background: none;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media print {
  .idsk-header-extended__menu-button {
    font-family: sans-serif;
  }
}
@media (min-width: 40.0625em) {
  .idsk-header-extended__menu-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print {
  .idsk-header-extended__menu-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.idsk-header-extended__menu-button:focus, .idsk-header-extended__menu-button:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
@media print {
  .idsk-header-extended {
    border-bottom-width: 0;
    color: #0b0c0c;
    background: transparent;
  }
  .idsk-header-extended__logotype-crown-fallback-image {
    display: none;
  }
  .idsk-header-extended__link:link, .idsk-header-extended__link:visited {
    color: #0b0c0c;
  }
  .idsk-header-extended:after {
    display: none;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended {
    position: fixed;
    top: 0;
    padding-top: 15px;
    width: 100vw;
    display: table;
    overflow-y: scroll;
    z-index: 11;
  }
}
.js-enabled .idsk-header-extended__mobile {
  background: #003078;
  display: none;
  height: 100%;
  left: 0;
  overflow-x: hidden;
  padding: 15px;
  position: fixed;
  top: 0;
  width: 0;
  z-index: 11;
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended__mobile {
    padding: 30px;
    padding-top: 15px;
  }
}
.js-enabled .idsk-header-extended__mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: 31px;
  height: 20px;
  line-height: 16px;
  padding-left: 0;
  position: absolute;
  right: 25px;
  top: 25px;
  width: 25px;
  z-index: 5;
}
.js-enabled .idsk-header-extended__mobile-close:after {
  content: "✕";
}
.js-enabled .idsk-header-extended__mobile-close:focus, .js-enabled .idsk-header-extended__mobile-close:active {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdf0f;
  box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
  text-decoration: none;
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended__mobile-close {
    right: 50px;
  }
}
.js-enabled .idsk-header-extended__menu-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended__menu-button {
    right: 40px;
  }
}
@media (min-width: 48.0625em) {
  .js-enabled .idsk-header-extended__menu-button {
    display: none;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended-notification {
    padding-top: 91px;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu {
    height: 100%;
    overflow-y: scroll;
    display: inline-block;
    z-index: 11;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile {
    display: block;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile {
    width: calc(100% - 60px);
    height: calc(100% - 45px);
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile-close {
    display: block;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__logo {
    z-index: 12;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__logotype-crown, .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__logotype-crown-mobile {
    display: none;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__logotype-crown-mobile-navigation {
    max-width: 246px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search {
    clear: both;
    display: block;
    margin-top: 10px;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-form:focus-within .idsk-header-extended__search-label {
    z-index: -1;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-label {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1111111111;
    padding: 15px;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-label {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-label {
    width: calc(100% - 60px);
    padding: 10px;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .idsk-header-extended__search-label.idsk-header-extended__search-input--focus {
    z-index: -1;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .govuk-input {
    height: 50px;
    max-width: 240px;
    width: 100%;
    border: 1px solid #0b0c0c;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .govuk-input.idsk-header-extended__search-input--focus, .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .govuk-input:focus {
    z-index: 2;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__search .govuk-button {
    margin-top: 1px;
    font-size: 19px;
    height: 48px;
    width: 48px;
    padding-left: 9px;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content {
    display: block;
    margin-bottom: 30px;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content a {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.0416666667;
    color: #ffffff;
    padding-left: 0;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content a {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content a {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content a {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content-item--active .idsk-header-extended__link {
    outline: 3px solid transparent;
    color: #0b0c0c;
    background-color: #ffdf0f;
    box-shadow: 0 -2px #ffdf0f, 0 4px #0b0c0c;
    text-decoration: none;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-js-header-extended-submenu-toggle {
    padding-right: 20px;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu {
    padding-top: 20px;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu ul {
    padding-left: 0;
    margin-left: 0;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1111111111;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.1111111111;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a:hover, .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a:active {
    background: #ffdf0f;
    color: #003078;
    font-weight: 600;
    text-decoration: none;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__content .idsk-header-extended__navigation-submenu li a.active {
    font-weight: 600;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__hr {
    border: none;
    border-top: 2px solid #ffffff;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.0416666667;
    display: block;
    margin-top: 15px;
    padding-left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-button {
    font-family: "Source Sans Pro", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.0416666667;
    color: #ffffff;
    padding-right: 30px;
    padding-left: 0;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-button {
    font-family: sans-serif;
  }
}
@media (max-width: 48.0525em) and (min-width: 40.0625em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-button {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}
@media print and (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-button {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-button:after {
    border-color: #ffffff transparent transparent;
    margin-top: 10px;
    border-width: 8px 5px 0;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-list {
    background: none;
    position: relative;
    width: 100%;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__mobile .idsk-header-extended__language-list-link {
    color: #ffffff;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__social {
    display: block;
    margin-top: 20px;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__social-link {
    color: #ffffff;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu .idsk-header-extended__social-item:first-child {
    padding-left: 0;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu.idsk-header-extended--shrink .idsk-header-extended__logotype-crown-mobile,
.js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu.idsk-header-extended--shrink .idsk-header-extended__logotype-crown-mobile-navigation {
    display: none;
  }
  .js-enabled .idsk-header-extended.idsk-header-extended--show-mobile-menu.idsk-header-extended--shrink .idsk-header-extended__logotype-crown-mobile-small-navigation {
    display: inline-block;
  }
}
@media (max-width: 48.0525em) {
  .js-enabled .idsk-header-extended.idsk-header-extended--cookie {
    position: absolute;
  }
}
.idsk-header-extended__language--current-text img,
.idsk-header-extended__language-list-link img {
  width: 15%;
}
@media (max-width: 40.0525em) {
  .idsk-skip-link--sticky:focus + .idsk-header-extended {
    top: 2.28124rem;
  }
}
@media (min-width: 40.0625em) {
  .idsk-skip-link--sticky:focus + .idsk-header-extended {
    top: 2.53124rem;
  }
}
@media (max-width: 48.0525em) {
  .idsk-skip-link--sticky:focus ~ .idsk-header-extended-notification {
    padding-top: 7.938rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .idsk-header-extended-ie-fix {
    height: 55px;
  }
}
@media (-ms-high-contrast: none) and (min-width: 48.0625em), (-ms-high-contrast: active) and (min-width: 48.0625em) {
  .idsk-header-extended-ie-fix {
    height: 0;
  }
}
html,
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
}
p,
dl,
ol,
ul {
  margin-top: 0;
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
[disabled] {
  border-color: var(--idsk-color-mid-grey);
  background-color: var(--idsk-color-white);
  color: var(--idsk-color-black);
  cursor: not-allowed;
}
#main-content {
  flex: 1;
}
.autocomplete--with-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}
@media screen and (max-width: 641px) {
  .autocomplete--with-button .autocomplete__hint,
.autocomplete--with-button .autocomplete__input {
    padding-top: 9px;
    padding-bottom: 7px;
  }
}
@font-face {
  font-family: "Fira Mono";
  src: url("/fonts/FiraMono-Medium.ttf") format("truetype");
}
.mono-code {
  font-family: "Fira Mono";
}
.pb-0 {
  padding-bottom: 0;
}
.pt-0 {
  padding-top: 0;
}
mb-4 {
  margin-bottom: 20px;
}
.notyf {
  z-index: 11000 !important;
  font-family: "Source Sans Pro", "Arial", sans-serif;
}
.align-items-right {
  justify-content: flex-end;
}
.align-items-center {
  justify-content: center;
}
.align-items-spaced {
  justify-content: space-around;
}
.align-items-justify {
  justify-content: space-between;
}
.align-items-top {
  align-items: flex-start;
}
.align-items-bottom {
  align-items: flex-end;
}
.align-items-middle {
  align-items: center;
}
.align-self-left {
  margin-left: 0;
  margin-right: auto;
}
.align-self-right {
  margin-left: auto;
  margin-right: 0;
}
.align-self-center {
  margin-left: auto;
  margin-right: auto;
}
.align-self-top {
  align-self: flex-start;
}
.align-self-bottom {
  align-self: flex-end;
}
.align-self-middle {
  align-self: center;
}
.align-self-stretch {
  align-self: stretch;
}
.d-flex {
  display: flex !important;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.flex-basis-30 {
  flex-basis: 30%;
}
.d-block {
  display: block !important;
}
.relative {
  position: relative;
}
@media screen and (min-width: 640px) {
  .buttons-space-between {
    display: flex;
    justify-content: space-between;
  }
}
:root {
  --idsk-color-red: #d0190f;
  --idsk-color-dark-red: #9e1912;
  --idsk-color-yellow: #ffdf0f;
  --idsk-color-green: #00703c;
  --idsk-color-dark-green: #204e2e;
  --idsk-color-blue: #0065b3;
  --idsk-color-dark-blue: #003078;
  --idsk-color-light-blue: #2b8cc4;
  --idsk-color-purple: #4c2c92;
  --idsk-color-black: #0b0c0c;
  --idsk-color-dark-grey: #626a6e;
  --idsk-color-mid-grey: #bfc1c3;
  --idsk-color-light-grey: #dee0e2;
  --idsk-color-lighter-grey: #f3f2f1;
  --idsk-color-white: #ffffff;
  --idsk-color-light-purple: #6f72af;
  --idsk-color-bright-purple: #912b88;
  --idsk-color-pink: #d53880;
  --idsk-color-light-pink: #f499be;
  --idsk-color-orange: #f47738;
  --idsk-color-brown: #b58840;
  --idsk-color-light-green: #85994b;
  --idsk-color-turquoise: #28a197;
  --idsk-color-grey-1: #626a6e;
  --idsk-color-grey-2: #bfc1c3;
  --idsk-color-grey-3: #dee0e2;
  --idsk-color-grey-4: #f3f2f1;
  --idsk-color-grey-5: #949494;
}
/**
 * Utility classes generated based on IDSK spacings
 * @see node_modules/@id-sk/frontend/govuk/settings/_spacing.scss
*/
/**
 * Directions used in the mixin `_govuk-responsive-spacing` and their
 * class name tokens as generated in the final css.
 */
.mt-0 {
  margin-top: 0;
}
@media (min-width: 40.0625em) {
  .mt-0 {
    margin-top: 0;
  }
}
.mt-0-\! {
  margin-top: 0 !important;
}
@media (min-width: 40.0625em) {
  .mt-0-\! {
    margin-top: 0 !important;
  }
}
.mr-0 {
  margin-right: 0;
}
@media (min-width: 40.0625em) {
  .mr-0 {
    margin-right: 0;
  }
}
.mr-0-\! {
  margin-right: 0 !important;
}
@media (min-width: 40.0625em) {
  .mr-0-\! {
    margin-right: 0 !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}
@media (min-width: 40.0625em) {
  .mb-0 {
    margin-bottom: 0;
  }
}
.mb-0-\! {
  margin-bottom: 0 !important;
}
@media (min-width: 40.0625em) {
  .mb-0-\! {
    margin-bottom: 0 !important;
  }
}
.ml-0 {
  margin-left: 0;
}
@media (min-width: 40.0625em) {
  .ml-0 {
    margin-left: 0;
  }
}
.ml-0-\! {
  margin-left: 0 !important;
}
@media (min-width: 40.0625em) {
  .ml-0-\! {
    margin-left: 0 !important;
  }
}
.ma-0 {
  margin: 0;
}
@media (min-width: 40.0625em) {
  .ma-0 {
    margin: 0;
  }
}
.ma-0-\! {
  margin: 0 !important;
}
@media (min-width: 40.0625em) {
  .ma-0-\! {
    margin: 0 !important;
  }
}
.pt-0 {
  padding-top: 0;
}
@media (min-width: 40.0625em) {
  .pt-0 {
    padding-top: 0;
  }
}
.pt-0-\! {
  padding-top: 0 !important;
}
@media (min-width: 40.0625em) {
  .pt-0-\! {
    padding-top: 0 !important;
  }
}
.pr-0 {
  padding-right: 0;
}
@media (min-width: 40.0625em) {
  .pr-0 {
    padding-right: 0;
  }
}
.pr-0-\! {
  padding-right: 0 !important;
}
@media (min-width: 40.0625em) {
  .pr-0-\! {
    padding-right: 0 !important;
  }
}
.pb-0 {
  padding-bottom: 0;
}
@media (min-width: 40.0625em) {
  .pb-0 {
    padding-bottom: 0;
  }
}
.pb-0-\! {
  padding-bottom: 0 !important;
}
@media (min-width: 40.0625em) {
  .pb-0-\! {
    padding-bottom: 0 !important;
  }
}
.pl-0 {
  padding-left: 0;
}
@media (min-width: 40.0625em) {
  .pl-0 {
    padding-left: 0;
  }
}
.pl-0-\! {
  padding-left: 0 !important;
}
@media (min-width: 40.0625em) {
  .pl-0-\! {
    padding-left: 0 !important;
  }
}
.pa-0 {
  padding: 0;
}
@media (min-width: 40.0625em) {
  .pa-0 {
    padding: 0;
  }
}
.pa-0-\! {
  padding: 0 !important;
}
@media (min-width: 40.0625em) {
  .pa-0-\! {
    padding: 0 !important;
  }
}
.mt-1 {
  margin-top: 5px;
}
@media (min-width: 40.0625em) {
  .mt-1 {
    margin-top: 5px;
  }
}
.mt-1-\! {
  margin-top: 5px !important;
}
@media (min-width: 40.0625em) {
  .mt-1-\! {
    margin-top: 5px !important;
  }
}
.mr-1 {
  margin-right: 5px;
}
@media (min-width: 40.0625em) {
  .mr-1 {
    margin-right: 5px;
  }
}
.mr-1-\! {
  margin-right: 5px !important;
}
@media (min-width: 40.0625em) {
  .mr-1-\! {
    margin-right: 5px !important;
  }
}
.mb-1 {
  margin-bottom: 5px;
}
@media (min-width: 40.0625em) {
  .mb-1 {
    margin-bottom: 5px;
  }
}
.mb-1-\! {
  margin-bottom: 5px !important;
}
@media (min-width: 40.0625em) {
  .mb-1-\! {
    margin-bottom: 5px !important;
  }
}
.ml-1 {
  margin-left: 5px;
}
@media (min-width: 40.0625em) {
  .ml-1 {
    margin-left: 5px;
  }
}
.ml-1-\! {
  margin-left: 5px !important;
}
@media (min-width: 40.0625em) {
  .ml-1-\! {
    margin-left: 5px !important;
  }
}
.ma-1 {
  margin: 5px;
}
@media (min-width: 40.0625em) {
  .ma-1 {
    margin: 5px;
  }
}
.ma-1-\! {
  margin: 5px !important;
}
@media (min-width: 40.0625em) {
  .ma-1-\! {
    margin: 5px !important;
  }
}
.pt-1 {
  padding-top: 5px;
}
@media (min-width: 40.0625em) {
  .pt-1 {
    padding-top: 5px;
  }
}
.pt-1-\! {
  padding-top: 5px !important;
}
@media (min-width: 40.0625em) {
  .pt-1-\! {
    padding-top: 5px !important;
  }
}
.pr-1 {
  padding-right: 5px;
}
@media (min-width: 40.0625em) {
  .pr-1 {
    padding-right: 5px;
  }
}
.pr-1-\! {
  padding-right: 5px !important;
}
@media (min-width: 40.0625em) {
  .pr-1-\! {
    padding-right: 5px !important;
  }
}
.pb-1 {
  padding-bottom: 5px;
}
@media (min-width: 40.0625em) {
  .pb-1 {
    padding-bottom: 5px;
  }
}
.pb-1-\! {
  padding-bottom: 5px !important;
}
@media (min-width: 40.0625em) {
  .pb-1-\! {
    padding-bottom: 5px !important;
  }
}
.pl-1 {
  padding-left: 5px;
}
@media (min-width: 40.0625em) {
  .pl-1 {
    padding-left: 5px;
  }
}
.pl-1-\! {
  padding-left: 5px !important;
}
@media (min-width: 40.0625em) {
  .pl-1-\! {
    padding-left: 5px !important;
  }
}
.pa-1 {
  padding: 5px;
}
@media (min-width: 40.0625em) {
  .pa-1 {
    padding: 5px;
  }
}
.pa-1-\! {
  padding: 5px !important;
}
@media (min-width: 40.0625em) {
  .pa-1-\! {
    padding: 5px !important;
  }
}
.mt-2 {
  margin-top: 10px;
}
@media (min-width: 40.0625em) {
  .mt-2 {
    margin-top: 10px;
  }
}
.mt-2-\! {
  margin-top: 10px !important;
}
@media (min-width: 40.0625em) {
  .mt-2-\! {
    margin-top: 10px !important;
  }
}
.mr-2 {
  margin-right: 10px;
}
@media (min-width: 40.0625em) {
  .mr-2 {
    margin-right: 10px;
  }
}
.mr-2-\! {
  margin-right: 10px !important;
}
@media (min-width: 40.0625em) {
  .mr-2-\! {
    margin-right: 10px !important;
  }
}
.mb-2 {
  margin-bottom: 10px;
}
@media (min-width: 40.0625em) {
  .mb-2 {
    margin-bottom: 10px;
  }
}
.mb-2-\! {
  margin-bottom: 10px !important;
}
@media (min-width: 40.0625em) {
  .mb-2-\! {
    margin-bottom: 10px !important;
  }
}
.ml-2 {
  margin-left: 10px;
}
@media (min-width: 40.0625em) {
  .ml-2 {
    margin-left: 10px;
  }
}
.ml-2-\! {
  margin-left: 10px !important;
}
@media (min-width: 40.0625em) {
  .ml-2-\! {
    margin-left: 10px !important;
  }
}
.ma-2 {
  margin: 10px;
}
@media (min-width: 40.0625em) {
  .ma-2 {
    margin: 10px;
  }
}
.ma-2-\! {
  margin: 10px !important;
}
@media (min-width: 40.0625em) {
  .ma-2-\! {
    margin: 10px !important;
  }
}
.pt-2 {
  padding-top: 10px;
}
@media (min-width: 40.0625em) {
  .pt-2 {
    padding-top: 10px;
  }
}
.pt-2-\! {
  padding-top: 10px !important;
}
@media (min-width: 40.0625em) {
  .pt-2-\! {
    padding-top: 10px !important;
  }
}
.pr-2 {
  padding-right: 10px;
}
@media (min-width: 40.0625em) {
  .pr-2 {
    padding-right: 10px;
  }
}
.pr-2-\! {
  padding-right: 10px !important;
}
@media (min-width: 40.0625em) {
  .pr-2-\! {
    padding-right: 10px !important;
  }
}
.pb-2 {
  padding-bottom: 10px;
}
@media (min-width: 40.0625em) {
  .pb-2 {
    padding-bottom: 10px;
  }
}
.pb-2-\! {
  padding-bottom: 10px !important;
}
@media (min-width: 40.0625em) {
  .pb-2-\! {
    padding-bottom: 10px !important;
  }
}
.pl-2 {
  padding-left: 10px;
}
@media (min-width: 40.0625em) {
  .pl-2 {
    padding-left: 10px;
  }
}
.pl-2-\! {
  padding-left: 10px !important;
}
@media (min-width: 40.0625em) {
  .pl-2-\! {
    padding-left: 10px !important;
  }
}
.pa-2 {
  padding: 10px;
}
@media (min-width: 40.0625em) {
  .pa-2 {
    padding: 10px;
  }
}
.pa-2-\! {
  padding: 10px !important;
}
@media (min-width: 40.0625em) {
  .pa-2-\! {
    padding: 10px !important;
  }
}
.mt-3 {
  margin-top: 15px;
}
@media (min-width: 40.0625em) {
  .mt-3 {
    margin-top: 15px;
  }
}
.mt-3-\! {
  margin-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .mt-3-\! {
    margin-top: 15px !important;
  }
}
.mr-3 {
  margin-right: 15px;
}
@media (min-width: 40.0625em) {
  .mr-3 {
    margin-right: 15px;
  }
}
.mr-3-\! {
  margin-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .mr-3-\! {
    margin-right: 15px !important;
  }
}
.mb-3 {
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .mb-3 {
    margin-bottom: 15px;
  }
}
.mb-3-\! {
  margin-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .mb-3-\! {
    margin-bottom: 15px !important;
  }
}
.ml-3 {
  margin-left: 15px;
}
@media (min-width: 40.0625em) {
  .ml-3 {
    margin-left: 15px;
  }
}
.ml-3-\! {
  margin-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .ml-3-\! {
    margin-left: 15px !important;
  }
}
.ma-3 {
  margin: 15px;
}
@media (min-width: 40.0625em) {
  .ma-3 {
    margin: 15px;
  }
}
.ma-3-\! {
  margin: 15px !important;
}
@media (min-width: 40.0625em) {
  .ma-3-\! {
    margin: 15px !important;
  }
}
.pt-3 {
  padding-top: 15px;
}
@media (min-width: 40.0625em) {
  .pt-3 {
    padding-top: 15px;
  }
}
.pt-3-\! {
  padding-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .pt-3-\! {
    padding-top: 15px !important;
  }
}
.pr-3 {
  padding-right: 15px;
}
@media (min-width: 40.0625em) {
  .pr-3 {
    padding-right: 15px;
  }
}
.pr-3-\! {
  padding-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .pr-3-\! {
    padding-right: 15px !important;
  }
}
.pb-3 {
  padding-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .pb-3 {
    padding-bottom: 15px;
  }
}
.pb-3-\! {
  padding-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .pb-3-\! {
    padding-bottom: 15px !important;
  }
}
.pl-3 {
  padding-left: 15px;
}
@media (min-width: 40.0625em) {
  .pl-3 {
    padding-left: 15px;
  }
}
.pl-3-\! {
  padding-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .pl-3-\! {
    padding-left: 15px !important;
  }
}
.pa-3 {
  padding: 15px;
}
@media (min-width: 40.0625em) {
  .pa-3 {
    padding: 15px;
  }
}
.pa-3-\! {
  padding: 15px !important;
}
@media (min-width: 40.0625em) {
  .pa-3-\! {
    padding: 15px !important;
  }
}
.mt-4 {
  margin-top: 15px;
}
@media (min-width: 40.0625em) {
  .mt-4 {
    margin-top: 20px;
  }
}
.mt-4-\! {
  margin-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .mt-4-\! {
    margin-top: 20px !important;
  }
}
.mr-4 {
  margin-right: 15px;
}
@media (min-width: 40.0625em) {
  .mr-4 {
    margin-right: 20px;
  }
}
.mr-4-\! {
  margin-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .mr-4-\! {
    margin-right: 20px !important;
  }
}
.mb-4 {
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .mb-4 {
    margin-bottom: 20px;
  }
}
.mb-4-\! {
  margin-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .mb-4-\! {
    margin-bottom: 20px !important;
  }
}
.ml-4 {
  margin-left: 15px;
}
@media (min-width: 40.0625em) {
  .ml-4 {
    margin-left: 20px;
  }
}
.ml-4-\! {
  margin-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .ml-4-\! {
    margin-left: 20px !important;
  }
}
.ma-4 {
  margin: 15px;
}
@media (min-width: 40.0625em) {
  .ma-4 {
    margin: 20px;
  }
}
.ma-4-\! {
  margin: 15px !important;
}
@media (min-width: 40.0625em) {
  .ma-4-\! {
    margin: 20px !important;
  }
}
.pt-4 {
  padding-top: 15px;
}
@media (min-width: 40.0625em) {
  .pt-4 {
    padding-top: 20px;
  }
}
.pt-4-\! {
  padding-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .pt-4-\! {
    padding-top: 20px !important;
  }
}
.pr-4 {
  padding-right: 15px;
}
@media (min-width: 40.0625em) {
  .pr-4 {
    padding-right: 20px;
  }
}
.pr-4-\! {
  padding-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .pr-4-\! {
    padding-right: 20px !important;
  }
}
.pb-4 {
  padding-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .pb-4 {
    padding-bottom: 20px;
  }
}
.pb-4-\! {
  padding-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .pb-4-\! {
    padding-bottom: 20px !important;
  }
}
.pl-4 {
  padding-left: 15px;
}
@media (min-width: 40.0625em) {
  .pl-4 {
    padding-left: 20px;
  }
}
.pl-4-\! {
  padding-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .pl-4-\! {
    padding-left: 20px !important;
  }
}
.pa-4 {
  padding: 15px;
}
@media (min-width: 40.0625em) {
  .pa-4 {
    padding: 20px;
  }
}
.pa-4-\! {
  padding: 15px !important;
}
@media (min-width: 40.0625em) {
  .pa-4-\! {
    padding: 20px !important;
  }
}
.mt-5 {
  margin-top: 15px;
}
@media (min-width: 40.0625em) {
  .mt-5 {
    margin-top: 25px;
  }
}
.mt-5-\! {
  margin-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .mt-5-\! {
    margin-top: 25px !important;
  }
}
.mr-5 {
  margin-right: 15px;
}
@media (min-width: 40.0625em) {
  .mr-5 {
    margin-right: 25px;
  }
}
.mr-5-\! {
  margin-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .mr-5-\! {
    margin-right: 25px !important;
  }
}
.mb-5 {
  margin-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .mb-5 {
    margin-bottom: 25px;
  }
}
.mb-5-\! {
  margin-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .mb-5-\! {
    margin-bottom: 25px !important;
  }
}
.ml-5 {
  margin-left: 15px;
}
@media (min-width: 40.0625em) {
  .ml-5 {
    margin-left: 25px;
  }
}
.ml-5-\! {
  margin-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .ml-5-\! {
    margin-left: 25px !important;
  }
}
.ma-5 {
  margin: 15px;
}
@media (min-width: 40.0625em) {
  .ma-5 {
    margin: 25px;
  }
}
.ma-5-\! {
  margin: 15px !important;
}
@media (min-width: 40.0625em) {
  .ma-5-\! {
    margin: 25px !important;
  }
}
.pt-5 {
  padding-top: 15px;
}
@media (min-width: 40.0625em) {
  .pt-5 {
    padding-top: 25px;
  }
}
.pt-5-\! {
  padding-top: 15px !important;
}
@media (min-width: 40.0625em) {
  .pt-5-\! {
    padding-top: 25px !important;
  }
}
.pr-5 {
  padding-right: 15px;
}
@media (min-width: 40.0625em) {
  .pr-5 {
    padding-right: 25px;
  }
}
.pr-5-\! {
  padding-right: 15px !important;
}
@media (min-width: 40.0625em) {
  .pr-5-\! {
    padding-right: 25px !important;
  }
}
.pb-5 {
  padding-bottom: 15px;
}
@media (min-width: 40.0625em) {
  .pb-5 {
    padding-bottom: 25px;
  }
}
.pb-5-\! {
  padding-bottom: 15px !important;
}
@media (min-width: 40.0625em) {
  .pb-5-\! {
    padding-bottom: 25px !important;
  }
}
.pl-5 {
  padding-left: 15px;
}
@media (min-width: 40.0625em) {
  .pl-5 {
    padding-left: 25px;
  }
}
.pl-5-\! {
  padding-left: 15px !important;
}
@media (min-width: 40.0625em) {
  .pl-5-\! {
    padding-left: 25px !important;
  }
}
.pa-5 {
  padding: 15px;
}
@media (min-width: 40.0625em) {
  .pa-5 {
    padding: 25px;
  }
}
.pa-5-\! {
  padding: 15px !important;
}
@media (min-width: 40.0625em) {
  .pa-5-\! {
    padding: 25px !important;
  }
}
.mt-6 {
  margin-top: 20px;
}
@media (min-width: 40.0625em) {
  .mt-6 {
    margin-top: 30px;
  }
}
.mt-6-\! {
  margin-top: 20px !important;
}
@media (min-width: 40.0625em) {
  .mt-6-\! {
    margin-top: 30px !important;
  }
}
.mr-6 {
  margin-right: 20px;
}
@media (min-width: 40.0625em) {
  .mr-6 {
    margin-right: 30px;
  }
}
.mr-6-\! {
  margin-right: 20px !important;
}
@media (min-width: 40.0625em) {
  .mr-6-\! {
    margin-right: 30px !important;
  }
}
.mb-6 {
  margin-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .mb-6 {
    margin-bottom: 30px;
  }
}
.mb-6-\! {
  margin-bottom: 20px !important;
}
@media (min-width: 40.0625em) {
  .mb-6-\! {
    margin-bottom: 30px !important;
  }
}
.ml-6 {
  margin-left: 20px;
}
@media (min-width: 40.0625em) {
  .ml-6 {
    margin-left: 30px;
  }
}
.ml-6-\! {
  margin-left: 20px !important;
}
@media (min-width: 40.0625em) {
  .ml-6-\! {
    margin-left: 30px !important;
  }
}
.ma-6 {
  margin: 20px;
}
@media (min-width: 40.0625em) {
  .ma-6 {
    margin: 30px;
  }
}
.ma-6-\! {
  margin: 20px !important;
}
@media (min-width: 40.0625em) {
  .ma-6-\! {
    margin: 30px !important;
  }
}
.pt-6 {
  padding-top: 20px;
}
@media (min-width: 40.0625em) {
  .pt-6 {
    padding-top: 30px;
  }
}
.pt-6-\! {
  padding-top: 20px !important;
}
@media (min-width: 40.0625em) {
  .pt-6-\! {
    padding-top: 30px !important;
  }
}
.pr-6 {
  padding-right: 20px;
}
@media (min-width: 40.0625em) {
  .pr-6 {
    padding-right: 30px;
  }
}
.pr-6-\! {
  padding-right: 20px !important;
}
@media (min-width: 40.0625em) {
  .pr-6-\! {
    padding-right: 30px !important;
  }
}
.pb-6 {
  padding-bottom: 20px;
}
@media (min-width: 40.0625em) {
  .pb-6 {
    padding-bottom: 30px;
  }
}
.pb-6-\! {
  padding-bottom: 20px !important;
}
@media (min-width: 40.0625em) {
  .pb-6-\! {
    padding-bottom: 30px !important;
  }
}
.pl-6 {
  padding-left: 20px;
}
@media (min-width: 40.0625em) {
  .pl-6 {
    padding-left: 30px;
  }
}
.pl-6-\! {
  padding-left: 20px !important;
}
@media (min-width: 40.0625em) {
  .pl-6-\! {
    padding-left: 30px !important;
  }
}
.pa-6 {
  padding: 20px;
}
@media (min-width: 40.0625em) {
  .pa-6 {
    padding: 30px;
  }
}
.pa-6-\! {
  padding: 20px !important;
}
@media (min-width: 40.0625em) {
  .pa-6-\! {
    padding: 30px !important;
  }
}
.mt-7 {
  margin-top: 25px;
}
@media (min-width: 40.0625em) {
  .mt-7 {
    margin-top: 40px;
  }
}
.mt-7-\! {
  margin-top: 25px !important;
}
@media (min-width: 40.0625em) {
  .mt-7-\! {
    margin-top: 40px !important;
  }
}
.mr-7 {
  margin-right: 25px;
}
@media (min-width: 40.0625em) {
  .mr-7 {
    margin-right: 40px;
  }
}
.mr-7-\! {
  margin-right: 25px !important;
}
@media (min-width: 40.0625em) {
  .mr-7-\! {
    margin-right: 40px !important;
  }
}
.mb-7 {
  margin-bottom: 25px;
}
@media (min-width: 40.0625em) {
  .mb-7 {
    margin-bottom: 40px;
  }
}
.mb-7-\! {
  margin-bottom: 25px !important;
}
@media (min-width: 40.0625em) {
  .mb-7-\! {
    margin-bottom: 40px !important;
  }
}
.ml-7 {
  margin-left: 25px;
}
@media (min-width: 40.0625em) {
  .ml-7 {
    margin-left: 40px;
  }
}
.ml-7-\! {
  margin-left: 25px !important;
}
@media (min-width: 40.0625em) {
  .ml-7-\! {
    margin-left: 40px !important;
  }
}
.ma-7 {
  margin: 25px;
}
@media (min-width: 40.0625em) {
  .ma-7 {
    margin: 40px;
  }
}
.ma-7-\! {
  margin: 25px !important;
}
@media (min-width: 40.0625em) {
  .ma-7-\! {
    margin: 40px !important;
  }
}
.pt-7 {
  padding-top: 25px;
}
@media (min-width: 40.0625em) {
  .pt-7 {
    padding-top: 40px;
  }
}
.pt-7-\! {
  padding-top: 25px !important;
}
@media (min-width: 40.0625em) {
  .pt-7-\! {
    padding-top: 40px !important;
  }
}
.pr-7 {
  padding-right: 25px;
}
@media (min-width: 40.0625em) {
  .pr-7 {
    padding-right: 40px;
  }
}
.pr-7-\! {
  padding-right: 25px !important;
}
@media (min-width: 40.0625em) {
  .pr-7-\! {
    padding-right: 40px !important;
  }
}
.pb-7 {
  padding-bottom: 25px;
}
@media (min-width: 40.0625em) {
  .pb-7 {
    padding-bottom: 40px;
  }
}
.pb-7-\! {
  padding-bottom: 25px !important;
}
@media (min-width: 40.0625em) {
  .pb-7-\! {
    padding-bottom: 40px !important;
  }
}
.pl-7 {
  padding-left: 25px;
}
@media (min-width: 40.0625em) {
  .pl-7 {
    padding-left: 40px;
  }
}
.pl-7-\! {
  padding-left: 25px !important;
}
@media (min-width: 40.0625em) {
  .pl-7-\! {
    padding-left: 40px !important;
  }
}
.pa-7 {
  padding: 25px;
}
@media (min-width: 40.0625em) {
  .pa-7 {
    padding: 40px;
  }
}
.pa-7-\! {
  padding: 25px !important;
}
@media (min-width: 40.0625em) {
  .pa-7-\! {
    padding: 40px !important;
  }
}
.mt-8 {
  margin-top: 30px;
}
@media (min-width: 40.0625em) {
  .mt-8 {
    margin-top: 50px;
  }
}
.mt-8-\! {
  margin-top: 30px !important;
}
@media (min-width: 40.0625em) {
  .mt-8-\! {
    margin-top: 50px !important;
  }
}
.mr-8 {
  margin-right: 30px;
}
@media (min-width: 40.0625em) {
  .mr-8 {
    margin-right: 50px;
  }
}
.mr-8-\! {
  margin-right: 30px !important;
}
@media (min-width: 40.0625em) {
  .mr-8-\! {
    margin-right: 50px !important;
  }
}
.mb-8 {
  margin-bottom: 30px;
}
@media (min-width: 40.0625em) {
  .mb-8 {
    margin-bottom: 50px;
  }
}
.mb-8-\! {
  margin-bottom: 30px !important;
}
@media (min-width: 40.0625em) {
  .mb-8-\! {
    margin-bottom: 50px !important;
  }
}
.ml-8 {
  margin-left: 30px;
}
@media (min-width: 40.0625em) {
  .ml-8 {
    margin-left: 50px;
  }
}
.ml-8-\! {
  margin-left: 30px !important;
}
@media (min-width: 40.0625em) {
  .ml-8-\! {
    margin-left: 50px !important;
  }
}
.ma-8 {
  margin: 30px;
}
@media (min-width: 40.0625em) {
  .ma-8 {
    margin: 50px;
  }
}
.ma-8-\! {
  margin: 30px !important;
}
@media (min-width: 40.0625em) {
  .ma-8-\! {
    margin: 50px !important;
  }
}
.pt-8 {
  padding-top: 30px;
}
@media (min-width: 40.0625em) {
  .pt-8 {
    padding-top: 50px;
  }
}
.pt-8-\! {
  padding-top: 30px !important;
}
@media (min-width: 40.0625em) {
  .pt-8-\! {
    padding-top: 50px !important;
  }
}
.pr-8 {
  padding-right: 30px;
}
@media (min-width: 40.0625em) {
  .pr-8 {
    padding-right: 50px;
  }
}
.pr-8-\! {
  padding-right: 30px !important;
}
@media (min-width: 40.0625em) {
  .pr-8-\! {
    padding-right: 50px !important;
  }
}
.pb-8 {
  padding-bottom: 30px;
}
@media (min-width: 40.0625em) {
  .pb-8 {
    padding-bottom: 50px;
  }
}
.pb-8-\! {
  padding-bottom: 30px !important;
}
@media (min-width: 40.0625em) {
  .pb-8-\! {
    padding-bottom: 50px !important;
  }
}
.pl-8 {
  padding-left: 30px;
}
@media (min-width: 40.0625em) {
  .pl-8 {
    padding-left: 50px;
  }
}
.pl-8-\! {
  padding-left: 30px !important;
}
@media (min-width: 40.0625em) {
  .pl-8-\! {
    padding-left: 50px !important;
  }
}
.pa-8 {
  padding: 30px;
}
@media (min-width: 40.0625em) {
  .pa-8 {
    padding: 50px;
  }
}
.pa-8-\! {
  padding: 30px !important;
}
@media (min-width: 40.0625em) {
  .pa-8-\! {
    padding: 50px !important;
  }
}
.mt-9 {
  margin-top: 40px;
}
@media (min-width: 40.0625em) {
  .mt-9 {
    margin-top: 60px;
  }
}
.mt-9-\! {
  margin-top: 40px !important;
}
@media (min-width: 40.0625em) {
  .mt-9-\! {
    margin-top: 60px !important;
  }
}
.mr-9 {
  margin-right: 40px;
}
@media (min-width: 40.0625em) {
  .mr-9 {
    margin-right: 60px;
  }
}
.mr-9-\! {
  margin-right: 40px !important;
}
@media (min-width: 40.0625em) {
  .mr-9-\! {
    margin-right: 60px !important;
  }
}
.mb-9 {
  margin-bottom: 40px;
}
@media (min-width: 40.0625em) {
  .mb-9 {
    margin-bottom: 60px;
  }
}
.mb-9-\! {
  margin-bottom: 40px !important;
}
@media (min-width: 40.0625em) {
  .mb-9-\! {
    margin-bottom: 60px !important;
  }
}
.ml-9 {
  margin-left: 40px;
}
@media (min-width: 40.0625em) {
  .ml-9 {
    margin-left: 60px;
  }
}
.ml-9-\! {
  margin-left: 40px !important;
}
@media (min-width: 40.0625em) {
  .ml-9-\! {
    margin-left: 60px !important;
  }
}
.ma-9 {
  margin: 40px;
}
@media (min-width: 40.0625em) {
  .ma-9 {
    margin: 60px;
  }
}
.ma-9-\! {
  margin: 40px !important;
}
@media (min-width: 40.0625em) {
  .ma-9-\! {
    margin: 60px !important;
  }
}
.pt-9 {
  padding-top: 40px;
}
@media (min-width: 40.0625em) {
  .pt-9 {
    padding-top: 60px;
  }
}
.pt-9-\! {
  padding-top: 40px !important;
}
@media (min-width: 40.0625em) {
  .pt-9-\! {
    padding-top: 60px !important;
  }
}
.pr-9 {
  padding-right: 40px;
}
@media (min-width: 40.0625em) {
  .pr-9 {
    padding-right: 60px;
  }
}
.pr-9-\! {
  padding-right: 40px !important;
}
@media (min-width: 40.0625em) {
  .pr-9-\! {
    padding-right: 60px !important;
  }
}
.pb-9 {
  padding-bottom: 40px;
}
@media (min-width: 40.0625em) {
  .pb-9 {
    padding-bottom: 60px;
  }
}
.pb-9-\! {
  padding-bottom: 40px !important;
}
@media (min-width: 40.0625em) {
  .pb-9-\! {
    padding-bottom: 60px !important;
  }
}
.pl-9 {
  padding-left: 40px;
}
@media (min-width: 40.0625em) {
  .pl-9 {
    padding-left: 60px;
  }
}
.pl-9-\! {
  padding-left: 40px !important;
}
@media (min-width: 40.0625em) {
  .pl-9-\! {
    padding-left: 60px !important;
  }
}
.pa-9 {
  padding: 40px;
}
@media (min-width: 40.0625em) {
  .pa-9 {
    padding: 60px;
  }
}
.pa-9-\! {
  padding: 40px !important;
}
@media (min-width: 40.0625em) {
  .pa-9-\! {
    padding: 60px !important;
  }
}
.govuk-\!-text-align-left {
  text-align: left !important;
}
.govuk-\!-text-align-centre {
  text-align: center !important;
}
.govuk-\!-text-align-right {
  text-align: right !important;
}
.max-width--630 {
  max-width: 630px;
}
.line-break-anywhere {
  line-break: anywhere;
}
.autocomplete__wrapper {
  position: relative;
}
.autocomplete__hint, .autocomplete__input {
  -webkit-appearance: none;
  border: 2px solid #0b0c0c;
  border-radius: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 0;
  width: 100%;
}
.autocomplete__input {
  background-color: transparent;
  position: relative;
}
.autocomplete__hint {
  color: #b1b4b6;
  position: absolute;
}
.autocomplete__input--default {
  padding: 5px;
}
.autocomplete__input--focused {
  outline: 3px solid #fd0;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}
.autocomplete__input--show-all-values {
  padding: 5px 34px 5px 5px;
  cursor: pointer;
}
.autocomplete__dropdown-arrow-down {
  z-index: -1;
  display: inline-block;
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  top: 10px;
}
.autocomplete__menu {
  background-color: #fff;
  border: 2px solid #0b0c0c;
  border-top: 0;
  color: #0b0c0c;
  margin: 0;
  max-height: 342px;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
  width: calc(100% - 4px);
}
.autocomplete__menu--visible {
  display: block;
}
.autocomplete__menu--hidden {
  display: none;
}
.autocomplete__menu--overlay {
  box-shadow: rgba(0, 0, 0, 0.256863) 0 2px 6px;
  left: 0;
  position: absolute;
  top: 100%;
  z-index: 100;
}
.autocomplete__menu--inline {
  position: relative;
}
.autocomplete__option {
  border-bottom: solid #b1b4b6;
  border-width: 1px 0;
  cursor: pointer;
  display: block;
  position: relative;
}
.autocomplete__option > * {
  pointer-events: none;
}
.autocomplete__option:first-of-type {
  border-top-width: 0;
}
.autocomplete__option:last-of-type {
  border-bottom-width: 0;
}
.autocomplete__option--odd {
  background-color: #fafafa;
}
.autocomplete__option--focused, .autocomplete__option:hover {
  background-color: #1d70b8;
  border-color: #1d70b8;
  color: #fff;
  outline: 0;
}
@media (-ms-high-contrast: active), (forced-colors: active) {
  .autocomplete__menu {
    border-color: FieldText;
  }
  .autocomplete__option {
    background-color: Field;
    color: FieldText;
  }
  .autocomplete__option--focused, .autocomplete__option:hover {
    forced-color-adjust: none;
    background-color: SelectedItem;
    border-color: SelectedItem;
    color: SelectedItemText;
    outline-color: SelectedItemText;
  }
}
.autocomplete__option--no-results {
  background-color: #fafafa;
  color: #646b6f;
  cursor: not-allowed;
}
.autocomplete__hint, .autocomplete__input, .autocomplete__option {
  font-size: 16px;
  line-height: 1.25;
}
.autocomplete__hint, .autocomplete__option {
  padding: 5px;
}
@media (min-width: 641px) {
  .autocomplete__hint, .autocomplete__input, .autocomplete__option {
    font-size: 19px;
    line-height: 1.31579;
  }
}
:root {
  --radius-small: 2px;
  --radius: 4px;
  --radius-large: 6px;
  --radius-rounded: 9999px;
}@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/SourceSansPro-Bold-1ac53226.woff') format('woff'),local('Source Sans Pro');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/SourceSansPro-Light-4dc255cb.woff') format('woff'),local('Source Sans Pro');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/SourceSansPro-Regular-211a0a6a.woff') format('woff'),local('Source Sans Pro');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/SourceSansPro-Semibold-f920838f.woff') format('woff'),local('Source Sans Pro');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/fa-brands-400-a0375c05.woff') format('woff'),local('Source Sans Pro');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/fa-regular-400-6799c999.woff') format('woff'),local('Source Sans Pro');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('/assets/fa-solid-900-aab971ad.woff') format('woff'),local('Source Sans Pro');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}