html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  appearance: none;
  background-color: #000;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1.5em;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: black;
  color: #fff;
}

button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

button:disabled:hover, input[type="button"]:disabled:hover, input[type="reset"]:disabled:hover, input[type="submit"]:disabled:hover {
  background-color: #000;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 0.375em;
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375em;
}

input,
select,
textarea {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 1em;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  appearance: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color 150ms ease;
  width: 100%;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #b1b1b1;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #000;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 0, 0, 0.7);
  outline: none;
}

input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover {
  border: 1px solid #ddd;
}

input[type="color"]::placeholder, input[type="date"]::placeholder, input[type="datetime"]::placeholder, input[type="datetime-local"]::placeholder, input[type="email"]::placeholder, input[type="month"]::placeholder, input[type="number"]::placeholder, input[type="password"]::placeholder, input[type="search"]::placeholder, input[type="tel"]::placeholder, input[type="text"]::placeholder, input[type="time"]::placeholder, input[type="url"]::placeholder, input[type="week"]::placeholder, input:not([type])::placeholder, textarea::placeholder {
  color: #858585;
}

textarea {
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.375em;
}

[type="file"] {
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 0.75em;
  width: 100%;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #a6a6a6;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 0.75em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

body {
  color: #333;
  font-family: "Work Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.333em;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

p {
  margin: 0 0 0.75em;
}

a {
  color: #000;
  text-decoration: none;
  transition: color 150ms ease;
}

a:active, a:focus, a:hover {
  color: black;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0;
}

/*
	This is for the height of the device
*/
body {
  font-weight: 400;
  line-height: 1.35em;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

@media screen and (min-width: mobile-screen) {
  #container {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  #container:last-child {
    margin-right: 0;
  }
  #container:nth-child(1n) {
    margin-right: 0;
  }
  #container:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 23.75em) and (max-width: 40em) {
  #container {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  #container:last-child {
    margin-right: 0;
  }
  #container:nth-child(1n) {
    margin-right: 0;
  }
  #container:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  #container {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  #container:last-child {
    margin-right: 0;
  }
  #container:nth-child(1n) {
    margin-right: 0;
  }
  #container:nth-child(1n+1) {
    clear: left;
  }
}

@media screen and (min-width: 60em) {
  #container {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  #container:last-child {
    margin-right: 0;
  }
  #container:nth-child(1n) {
    margin-right: 0;
  }
  #container:nth-child(1n+1) {
    clear: left;
  }
}

.ov-title {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 700;
  margin-bottom: 0.25em;
}

.ov-title.major {
  margin-top: 1em;
  font-size: 1.9em;
  line-height: 1.4em;
}

.ov-subtitle {
  font-size: 1.2em;
  line-height: 1.4em;
  padding-top: 0.5em;
  margin-bottom: 1em;
  border-top: 1px solid #000;
}

.ov-subtitle.major {
  margin-bottom: 3em;
}

.ov-subtitle.empty {
  margin-bottom: 0em;
}

.sections {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
}

.sections::after {
  clear: both;
  content: "";
  display: block;
}

.sections header.title {
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.1em;
  margin-bottom: 0.25em;
}

.full-width-section.banner {
  background-image: url(img/banner_ov.png);
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 60em) {
  .full-width-section.banner {
    background-size: 123.43298em;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .full-width-section.banner {
    background-size: 113.55834em;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .full-width-section.banner {
    background-size: 61.71649em;
  }
}

.alt-colour {
  color: #828282;
}

.highlight-colour {
  color: #eb7600;
}

button {
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 0;
  color: #000;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .logos {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .logos {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 40em) {
  .logos {
    margin-top: 3em;
  }
  .logos .ov-logo {
    float: left;
    width: 35%;
  }
  .logos .institutions-logos {
    float: right;
    width: 55%;
    margin-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
  }
  .logos .institutions-logos .logo {
    max-height: 130px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .logos .ov-logo {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 82.52847%;
    margin-top: 1em;
    margin-bottom: 1.5em;
  }
  .logos .ov-logo:last-child {
    margin-right: 0;
  }
  .logos .institutions-logos {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
  }
  .logos .institutions-logos:last-child {
    margin-right: 0;
  }
  .logos .institutions-logos .logo {
    max-height: 130px;
  }
  .logos .institutions-logos a:not(:first-child) {
    padding-left: 20px;
  }
}

.intro .banner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.intro .banner::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 60em) {
  .intro .banner {
    height: 25em;
    margin-top: 2em;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .intro .banner {
    height: 23em;
    margin-top: 5em;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .banner {
    margin-top: 10em;
    height: 13em;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .banner .strap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .intro .banner .strap {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 60em) {
  .intro .banner .strap {
    float: left;
    display: block;
    margin-right: 2.57751%;
    width: 53.37386%;
    margin-top: 2em;
  }
  .intro .banner .strap:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .intro .banner .strap {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-top: -2em;
  }
  .intro .banner .strap:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .banner .strap {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
    margin-top: -8em;
  }
  .intro .banner .strap:last-child {
    margin-right: 0;
  }
}

.intro .banner .strap h1 {
  font-weight: 400;
  font-size: 2em;
}

.intro .flags {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.intro .flags::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .flags {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .intro .flags {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.intro .flags::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 60em) {
  .intro .flags {
    height: 16em;
    margin-top: -5.33333em;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .intro .flags {
    height: 20em;
    margin-top: -6.66667em;
  }
}

.intro .flags .item {
  padding-left: 1.5em;
  background-image: url(img/flag_yellow.png);
  background-repeat: no-repeat;
  background-size: 0.9em;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 60em) {
  .intro .flags .item {
    float: left;
    display: block;
    margin-right: 1.33375%;
    width: 27.61875%;
    padding-right: 1em;
  }
  .intro .flags .item:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .intro .flags .item {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
    padding-right: 0em;
  }
  .intro .flags .item:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 40em) {
  .intro .flags .item {
    background-position: left 0.2em;
  }
  .intro .flags .item:nth-child(2) {
    top: 3em;
  }
  .intro .flags .item:nth-child(3) {
    top: 6em;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .flags .item {
    padding-bottom: 1em;
    background-position: left top;
  }
}

.intro .strip {
  background-color: #ffc40d;
}

.intro .strip .strip-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5em;
  padding-bottom: 2em;
}

.intro .strip .strip-content::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .strip .strip-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .intro .strip .strip-content {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.intro .strip .strip-content .strap {
  font-size: 1.5em;
  line-height: 1.4em;
  margin-bottom: 1em;
}

@media screen and (min-width: 60em) {
  .intro .strip .strip-content .strap {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%;
  }
  .intro .strip .strip-content .strap:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .intro .strip .strip-content .strap {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .intro .strip .strip-content .strap:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .strip .strip-content .strap {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .intro .strip .strip-content .strap:last-child {
    margin-right: 0;
  }
}

.intro .strip .strip-content .section-button {
  background-color: #fff;
  background-image: url(img/button_arrow_1.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 3em;
  padding: 1em;
  padding-right: 3em;
  border: 1px solid #fff;
  -webkit-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

@media screen and (min-width: 40em) {
  .intro .strip .strip-content .section-button {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .intro .strip .strip-content .section-button:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .intro .strip .strip-content .section-button {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
    margin-bottom: 1em;
  }
  .intro .strip .strip-content .section-button:last-child {
    margin-right: 0;
  }
}

.intro .strip .strip-content .section-button .title {
  font-weight: 700;
}

.intro .strip .strip-content .section-button .desc {
  font-size: 0.9em;
  line-height: 1.4em;
}

.intro .strip .strip-content .section-button .desc ul {
  list-style-type: disc;
}

.intro .strip .strip-content .section-button .desc ul li {
  margin-left: 1em;
}

.intro .strip .strip-content .section-button:hover {
  border: 1px solid #f7941d;
}

.intro .strip .strip-content .section-button.button2 {
  background-image: url(img/button_arrow_2.png);
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .toolboxes {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .toolboxes {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.toolboxes .toolpacks {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 82.94039%;
  margin-left: 8.5298%;
  margin-bottom: 6em;
}

.toolboxes .toolpacks:last-child {
  margin-right: 0;
}

.toolboxes .toolpacks .toolpack {
  text-align: center;
}

.toolboxes .toolpacks .toolpack .title {
  font-size: 1.5em;
  line-height: 1.4em;
  position: relative;
}

.toolboxes .toolpacks .toolpack .title .beta-tag {
  position: relative;
}

.toolboxes .toolpacks .toolpack .title .beta-tag .text {
  position: absolute;
  left: 1px;
  top: -11px;
  font-size: 0.5em;
  font-weight: bold;
  text-transform: uppercase;
  color: #f7941d;
}

.toolboxes .toolpacks .toolpack img {
  width: 70%;
  margin-left: 20%;
  margin-top: 1em;
  margin-bottom: 1em;
}

.toolboxes .toolpacks .toolpack .question {
  font-weight: 700;
  margin-bottom: 0.8em;
}

.toolboxes .toolpacks .toolpack .divider {
  height: 1px;
  width: 40%;
  margin-left: 30%;
  background-color: #000;
  margin-bottom: 0.8em;
}

@media screen and (min-width: 40em) {
  .toolboxes .toolpacks .toolpack {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .toolboxes .toolpacks .toolpack:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .toolboxes .toolpacks .toolpack {
    margin-bottom: 3em;
  }
  .toolboxes .toolpacks .toolpack img {
    width: 50%;
    margin-left: 10%;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

.toolboxes .floating-image {
  max-width: 50%;
  float: right;
  margin-top: 0.6em;
}

.toolpack-tag {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.toolpack-tag::after {
  clear: both;
  content: "";
  display: block;
}

.toolpack-tag img {
  height: 2.7em;
  float: left;
  margin-right: 0.3em;
}

.toolpack-tag .title {
  line-height: 2.7em;
}

.toolpack-tag .beta-tag {
  position: relative;
}

.toolpack-tag .beta-tag .text {
  position: absolute;
  left: 1px;
  top: -15px;
  font-size: 0.7em;
  font-weight: bold;
  text-transform: uppercase;
  color: #f7941d;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .process {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .process {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.process .phase .step {
  font-size: 0.9em;
  line-height: 1.4em;
  background-color: #ededed;
  display: table;
  margin-bottom: 0.2em;
}

.process .phase .step::after {
  clear: both;
  content: "";
  display: block;
}

.process .phase .step ul {
  list-style-type: disc;
}

.process .phase .step ul li {
  margin-left: 1em;
}

.process .phase .step > div {
  padding: 1em;
  vertical-align: top;
}

@media screen and (min-width: 40em) {
  .process .phase .step > div {
    width: 33.33%;
    display: table-cell;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .process .phase .step > div {
    width: 100%;
  }
}

.process .phase .step .description .title {
  font-weight: bold;
  margin-bottom: 0.35em;
}

.process .phase .step .image {
  max-width: 80%;
  margin: auto;
}

.process .phase .step .context {
  background-color: #ffd453;
  position: relative;
}

.process .phase .step .context .heading {
  position: absolute;
  top: -2em;
  font-size: 1.1em;
  color: #f7941d;
}

.process .phase .step .context .heading.feed-only {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .process .phase .step .context .heading.columns-only {
    display: none;
  }
  .process .phase .step .context .heading.feed-only {
    display: block;
    position: relative;
    top: 0;
    color: #000;
    font-weight: 700;
    font-size: 0.9em;
    line-height: 1.4em;
  }
  .process .phase .step .context .heading.feed-only ul {
    list-style-type: disc;
  }
  .process .phase .step .context .heading.feed-only ul li {
    margin-left: 1em;
  }
}

.process .phase .step:nth-child(3) {
  background-color: #f0f0f0;
}

.process .phase .step:nth-child(4) {
  background-color: #f2f2f2;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .tool-download {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .tool-download {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.tool-download .tools-table {
  width: 100%;
}

@media screen and (min-width: 40em) {
  .tool-download .tools-table {
    display: table;
  }
}

.tool-download .tools-table .toolpack-tag {
  font-size: 1.2em;
  line-height: 1.25em;
  margin-top: 0;
}

.tool-download .tools-table .toolpack-tag img {
  height: 3.5em;
}

.tool-download .tools-table .toolpack-tag .full-title {
  position: relative;
  top: 0.3em;
}

.tool-download .tools-table .toolpack-tag .beta-tag .text {
  top: -6px;
}

.tool-download .tools-table .row {
  font-size: 0.9em;
  line-height: 1.4em;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}

.tool-download .tools-table .row ul {
  list-style-type: disc;
}

.tool-download .tools-table .row ul li {
  margin-left: 1em;
}

@media screen and (min-width: 40em) {
  .tool-download .tools-table .row {
    display: table-row;
  }
  .tool-download .tools-table .row > div {
    display: table-cell;
    border-top: 1px solid #bebebe;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .tool-download .tools-table .row > :nth-child(1) {
    width: 35%;
    padding-left: 0.5em;
  }
  .tool-download .tools-table .row > :nth-child(4) {
    width: 10%;
    text-align: center;
  }
  .tool-download .tools-table .row > :nth-child(4) input {
    font-size: 3em;
  }
  .tool-download .tools-table .row label .text {
    display: none;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .tool-download .tools-table .row {
    border: 1px solid #bebebe;
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1em;
  }
  .tool-download .tools-table .row > div {
    border-top: 1px solid #bebebe;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .tool-download .tools-table .row > div:nth-child(1) {
    border-top: none;
  }
}

.tool-download .tools-table .row:hover {
  background-color: #f0f0f0;
}

.tool-download .tools-table .row.selected {
  background-color: #fff;
}

.tool-download .tools-table .row.header {
  font-weight: bold;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .tool-download .tools-table .row.header {
    display: none;
  }
}

.tool-download .tools-table .row.header > div {
  border-top: none;
}

.tool-download .bottom {
  margin-top: 1em;
}

.tool-download .bottom::after {
  clear: both;
  content: "";
  display: block;
}

.tool-download .bottom .license {
  font-size: 0.8em;
}

@media screen and (min-width: 40em) {
  .tool-download .bottom .license {
    float: left;
    width: 50%;
  }
}

.tool-download .bottom .license img {
  max-width: 7em;
}

.tool-download .bottom .download-action {
  text-align: left;
}

@media screen and (min-width: 40em) {
  .tool-download .bottom .download-action {
    float: right;
    width: 50%;
  }
}

.tool-download .bottom .download-action .message {
  float: right;
  line-height: 1em;
  padding: 0.75em;
}

.tool-download .bottom .download-action button {
  float: right;
  margin-left: 0.5em;
}

.research {
  margin-top: 3em;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .research {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .research {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.research::after {
  clear: both;
  content: "";
  display: block;
}

.research .outputs-list::after {
  clear: both;
  content: "";
  display: block;
}

.research .outputs-list .output {
  display: block;
  padding-left: 2.5em;
  padding-right: 1em;
  margin-bottom: 2em;
  background-image: url(img/paper_icon.png);
  background-position: left 0.2em;
  background-repeat: no-repeat;
  background-size: 1.9em auto;
}

@media screen and (min-width: 40em) {
  .research .outputs-list .output {
    float: left;
    display: block;
    margin-right: 1.11797%;
    width: 47.41866%;
  }
  .research .outputs-list .output:last-child {
    margin-right: 0;
  }
  .research .outputs-list .output:nth-child(2) {
    margin-right: 0;
  }
}

.research .outputs-list .output .type {
  font-weight: 700;
}

.research .outputs-list .output.downloadble:hover .title {
  text-decoration: underline;
}

.research .outputs-list .output .divider {
  height: 1px;
  width: 40%;
  background-color: #000;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

.research .outputs-list .output .details {
  font-size: 0.9em;
  line-height: 1.4em;
}

.research .outputs-list .output .details ul {
  list-style-type: disc;
}

.research .outputs-list .output .details ul li {
  margin-left: 1em;
}

.research .team-list::after {
  clear: both;
  content: "";
  display: block;
}

.research .team-list .member {
  margin-bottom: 2em;
}

.research .team-list .member::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 60em) {
  .research .team-list .member {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .research .team-list .member:last-child {
    margin-right: 0;
  }
  .research .team-list .member:nth-child(2) {
    margin-right: 0;
  }
}

.research .team-list .member img {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  float: left;
  border: 1px solid #bebebe;
}

.research .team-list .member img:last-child {
  margin-right: 0;
}

.research .team-list .member .text {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  padding-left: 0.3em;
}

.research .team-list .member .text:last-child {
  margin-right: 0;
}

.research .team-list .member .text .name {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 700;
}

.research .team-list .member .text .details {
  font-size: 0.9em;
  line-height: 1.4em;
}

.research .team-list .member .text .details ul {
  list-style-type: disc;
}

.research .team-list .member .text .details ul li {
  margin-left: 1em;
}

.ov-box {
  background-color: #ededed;
  padding: 1em;
  border: 1px solid #ededed;
  margin-bottom: 1em;
}

.ov-box .heading {
  font-weight: 700;
  margin-top: 1em;
}

.ov-box .heading.first {
  margin-top: 0em;
}

.ov-box .body {
  font-size: 0.9em;
  line-height: 1.4em;
}

.ov-box .body ul {
  list-style-type: disc;
}

.ov-box .body ul li {
  margin-left: 1em;
}

@media screen and (min-width: 40em) {
  .ov-box.cols2 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .ov-box.cols2:last-child {
    margin-right: 0;
  }
  .ov-box.cols2:nth-child(2) {
    margin-right: 0;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .ov-box.cols2 {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 100%;
  }
  .ov-box.cols2:last-child {
    margin-right: 0;
  }
}

.ov-box.highlight1 {
  background-color: transparent;
  border: 1px solid #f7941d;
}

.ov-box.highlight2 {
  background-color: #ffd453;
  border: 1px solid #ffd453;
}

.ov-box .image {
  margin-top: 1em;
}

@media screen and (min-width: 40em) {
  .ov-box .image {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .ov-box .image:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .ov-box .image {
    float: left;
    display: block;
    margin-right: 4.82916%;
    width: 82.52847%;
  }
  .ov-box .image:last-child {
    margin-right: 0;
  }
}

.ov-box-row {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}

.ov-box-row:last-child {
  margin-right: 0;
}

/*
	Logic for the video
*/
@media screen and (min-width: 0) and (max-width: 40em) {
  .video {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .video {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.video .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.video .embed-container iframe, .video .embed-container object, .video .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ov-description {
  margin-top: 2.2em;
  margin-bottom: 3em;
}

.ov-description h3 {
  margin-bottom: 0.35em;
}

@media screen and (min-width: 60em) {
  .ov-description {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: distribute;
  }
  .ov-description .ov-desc-col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .ov-description .ov-desc-col:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 40em) and (max-width: 60em) {
  .ov-description {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: distribute;
  }
  .ov-description .ov-desc-col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .ov-description .ov-desc-col:last-child {
    margin-right: 0;
  }
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: solid 1px #b2b2b2;
  border-top: solid 1px #b2b2b2;
  background-color: #FFFFFF;
}

.nav-container {
  padding-top: 0px;
  position: relative;
}

@media screen and (min-width: 40em) {
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.nav-container .logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.nav-container .logo.showing {
  opacity: 1;
}

.nav-container .logo img {
  height: 3em;
}

.topnav {
  font-weight: 400;
}

@media screen and (min-width: 40em) {
  .topnav {
    float: right;
    /* Float the list items side by side */
    /* Style the links */
  }
  .topnav .icon {
    display: none;
  }
  .topnav .active {
    background-color: #eee;
  }
  .topnav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .topnav li {
    float: left;
    border-left: solid 1px #b2b2b2;
  }
  .topnav li:last-child {
    border-right: solid 1px #b2b2b2;
  }
  .topnav a {
    display: inline-block;
    color: #000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1em;
  }
  .topnav a:hover {
    background-color: #eee;
  }
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .topnav {
    float: right;
  }
  .topnav::after {
    clear: both;
    content: "";
    display: block;
  }
  .topnav a {
    display: inline-block;
    color: #000;
    padding: 6px 6px;
    text-decoration: none;
    transition: 0.3s;
    height: 2em;
  }
  .topnav li {
    text-align: right;
  }
  .topnav li.menu-item {
    display: none;
  }
  .topnav li.menu-item.showing {
    display: block;
  }
  .topnav li.icon {
    float: right;
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    top: 0.3em;
  }
}

.footer {
  background-color: #e0e0e0;
  width: 100%;
  margin-top: 5em;
  padding-top: 0.6em;
  padding-bottom: 0.8em;
  font-size: 0.8em;
}

.footer::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 0) and (max-width: 40em) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 40em) {
  .footer {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.footer a {
  color: #000;
}

.footer a:hover {
  color: #000;
  text-decoration: underline;
}

.footer .left {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}

.footer .left:last-child {
  margin-right: 0;
}

.footer .right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  text-align: right;
}

.footer .right:last-child {
  margin-right: 0;
}

.download-modal {
  display: none;
}

.download-modal .modal-fade-screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  padding-top: 0.6em;
  text-align: left;
  z-index: 99;
  padding-top: 4em;
}

.download-modal .modal-fade-screen .modal-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.download-modal .modal-close {
  z-index: 1000;
  position: absolute;
  top: 2.5em;
  right: 2.5em;
  height: 1.5em;
  width: 1.5em;
  cursor: pointer;
}

.download-modal .modal-close::after, .download-modal .modal-close::before {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 0;
  left: 50%;
  height: 1.5em;
  width: 0.1em;
  background: #000;
  content: "";
  display: block;
  margin: -3px 0 0 -1px;
  transform: rotate(45deg);
}

.download-modal .modal-close:hover::after, .download-modal .modal-close:hover::before {
  background: black;
}

.download-modal .modal-close::before {
  transform: rotate(-45deg);
}

.download-modal .modal-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1px;
  margin: auto;
  margin-top: 0;
  max-height: 95%;
  overflow: auto;
  padding: 2.5em;
  position: relative;
  transition: opacity 0.25s ease;
  /*@include media($medium-screen) {
          max-height: 70%;
          padding: $modal-padding;
          width: 60%;
        }

        @include media($large-screen) {
          width: 50%;
        }*/
}

.download-modal .modal-inner::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 40em) {
  .download-modal .modal-inner {
    width: 25em;
  }
}

@media screen and (min-width: 23.75em) and (max-width: 40em) {
  .download-modal .modal-inner {
    width: 95%;
  }
}

.download-modal .modal-content {
  text-align: center;
}

.download-modal .modal-content .icon {
  margin-top: 2em;
  margin-bottom: 1.6em;
}

.download-modal .modal-content .icon img {
  max-height: 4em;
}

.download-modal .modal-content .title1 {
  font-size: 1.2em;
  line-height: 1.4em;
  margin-bottom: 0.4em;
}

.download-modal .modal-content .title2 {
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 700;
}

.download-modal .modal-content .divider {
  width: 20%;
  height: 1px;
  background-color: #000;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
}

.download-modal .modal-content .body {
  font-size: 0.9em;
  line-height: 1.4em;
  margin-bottom: 0.2em;
  text-align: left;
}

.download-modal .modal-content .body ul {
  list-style-type: disc;
}

.download-modal .modal-content .body ul li {
  margin-left: 1em;
}

.download-modal .modal-content form {
  text-align: left;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.download-modal .modal-content form .checkbox-row {
  margin-bottom: 0.5em;
}

.download-modal .modal-content form .checkbox-row label {
  font-size: 0.9em;
  line-height: 1.4em;
  font-weight: normal;
  display: block;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.download-modal .modal-content form .checkbox-row label ul {
  list-style-type: disc;
}

.download-modal .modal-content form .checkbox-row label ul li {
  margin-left: 1em;
}

.download-modal .modal-content form .checkbox-row input {
  width: 1em;
  height: 1em;
  padding: 0;
  margin: 0;
  margin-right: 0.5em;
  vertical-align: bottom;
  position: relative;
  top: -3px;
  *overflow: hidden;
}

.mini-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.mini-video iframe, .mini-video object, .mini-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
.circles {
		@include clearfix();
		padding:1em;

		//display:table;

		.item {
			position: relative;

			@include media($medium-upwards-screen){
				@include span-columns(4);
				//display:table-cell;
			}
			@include media($small-screen) {
				@include span-columns(6);
			}

			.cir {
				border-radius:100%;
				background-color: $white;
				padding-bottom: 100%;
			}

			.txt {
				position: absolute;
				top: 50%;
				text-align: center;
				padding-left:10%;
				padding-right:10%;

				.cont {
					transform: translate(0, -50%);
				}
			}
		}

		.circle {
			@include media($medium-upwards-screen){
				@include span-columns(4);
			}
			@include media($small-screen) {
				@include span-columns(12);
			}

			.graphic {
				position: relative;
				border-radius:100%;
				background-color: $white;
				padding-bottom: 100%;
			}
			.floater {
				position: absolute;
				height:50%;
				width:100%;
			}
			.text {
				position: absolute;
				top: 0%;
				padding: 3em;
				text-align: center;
			}
		}
*/
