@charset "UTF-8";
/* CSS Document */
.dorey-section-yellow {
  background: url("/pix/bg-icon-pattern.png") var(--colour-dfm-gold);
}
.uk-button-large {
  font-size: 2em;
  font-weight: 100;
  letter-spacing: .2em;
}
h1 {
  font-weight: 100;
  font-size: 4em;
}
.dorey-tab .uk-active a, .dorey-tab li a {
  padding-top: 90px;
}
.dorey-tab .uk-active a {
  border-bottom: 4px solid var(--colour-dfm-grey);
  background: url("/pix/tab-icon.png") no-repeat top;
  background-size: contain, cover;
  filter: grayscale(0)
}
.dorey-tab li a {
  border-bottom: 4px solid rgba(255, 255, 255, 0);
  background: url("/pix/tab-icon.png") no-repeat top;
  background-size: contain, cover;
  filter: grayscale(1)
}
.dorey-table-bold-th th {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.dorey-table-grid {
  background-color: var(--colour-base-pale);
}
.dorey-table-grid td, .dorey-table-grid th {
  border: 1px solid #e5e5e5;
}
.dorey-demo-progress {
  padding: 4px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.dorey-demo-progress-bar {
  height: 24px;
  border-radius: 30px;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  transition: 0.4s linear;
  transition-property: width, background-color;
}
.dorey-demo-progress-moved .dorey-demo-progress-bar {
  width: 55%;
  background-color: var(--colour-dfm-grey);
  animation: progressAnimation 3s;
}
@keyframes progressAnimation {
  0% {
    width: 5%;
    background-color: var(--colour-dfm-grey);
  }
  100% {
    width: 55%;
    background-color: var(--colour-dfm-grey);
  }
}