
.btn {
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 2px;
  padding: 10px 40px;
  font-family: PTSansNarrow;
  font-size: 17px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: inline-block;
  color: #fff;
  background-color: #4483c4;
  border: 1px solid #3a79b9;
  outline: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  border-color: #4f92d7;
  background-color: #4f92d7;
}
.btn:disabled,
.btn.disabled {
  border-color: #a3c2e2;
  background-color: #a3c2e2;
}
.btn.small {
  padding: 4px 20px;
  font-size: 15px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.btn.tiny {
  padding: 0 7px;
  font-size: 14px;
  line-height: 21px;
  text-shadow: none;
}
.btn.huge {
  font-size: 26px;
  padding: 20px 40px;
  -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}
.btn.outline {
  border-color: #4483c4;
  color: #4483c4;
  background-color: transparent;
  text-shadow: none;
}
.btn.outline:hover {
  background-color: #f5f7f7;
}
.nostyle {
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
}
.btn.red {
  border-color: #a94442;
  background-color: #a94442;
}
.btn.red:hover {
  background-color: #973d3b;
}
.btn.red.disabled,
.btn.red:disabled,
.btn.red.disabled:hover,
.btn.red:disabled:hover {
  border-color: #d69695;
  background-color: #d69695;
}
.btn.orange {
  border-color: #f29715;
  background-color: #f29715;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.btn.orange:hover {
  background-color: #f4a637;
  border-color: #f4a637;
}
.btn.orange.disabled,
.btn.orange:disabled,
.btn.orange.disabled:hover,
.btn.orange:disabled:hover {
  border-color: #f9cd8e;
  background-color: #f9cd8e;
}
@font-face {
  font-family: 'PTSansNarrow';
  src: url('/assets/fonts/pt_sans_narrow/PT_Sans-Narrow-Web-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('/assets/fonts/opensans/OpenSans-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('/assets/fonts/opensans/OpenSans-Semibold.ttf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  font-weight: 400;
  src: url('/assets/fonts/merriweather/Merriweather-Regular.ttf');
}
@font-face {
  font-family: 'Merriweather';
  font-weight: bold;
  src: url('/assets/fonts/merriweather/Merriweather-Bold.ttf');
}
@font-face {
  font-family: 'FontAwesome';
  src: url('/assets/fonts/font_awesome/fontawesome-webfont.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Tonicons';
  src: url('/assets/fonts/tonicons/Tonicons.ttf');
}
@font-face {
  font-family: 'Stroke7';
  src: url('/assets/fonts/stroke7/Pe-icon-7-stroke.ttf');
}
.error-msg {
  color: #ef4343;
  font-size: 15px;
  padding: 10px 0 0 0;
}
dl,
dd {
  padding: 0;
  margin: 0;
}
dd.error {
  color: #ef4343;
  font-size: 15px;
  margin-top: -5px;
  padding-bottom: 5px;
}
dd.info {
  color: #9f9f9f;
}
input,
textarea,
select {
  border: 0;
  outline: none;
  font-size: 17px;
}
input,
textarea {
  -webkit-appearance: none;
}
input[type=text],
input[type=password],
textarea,
select {
  box-sizing: border-box;
  color: #525252;
  background-color: #fff;
  font-family: PTSansNarrow;
  letter-spacing: 1px;
  border: 1px solid #e7e7e7;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border-color: #4f92d7;
  box-shadow: 0 0 4px 0 rgba(79, 146, 215, 0.5);
}
input[type=checkbox],
input[type=radio] {
  display: none;
}
label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 16px;
  display: inline-block;
  width: 20px;
  text-align: left;
}
input[type=checkbox] + label:before {
  content: '\f096';
}
input[type=radio] + label:before {
  content: '\f10c';
}
input[type=checkbox]:checked + label:before {
  content: '\f046';
}
input[type=radio]:checked + label:before {
  content: '\f192';
}
input[type=checkbox][disabled] + label,
input[type=checkbox][disabled] + label:before {
  color: #bec3cc;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #525252 !important;
}
input.inline {
  border: 1px solid #e5e5e5;
  padding: 4px 25px 4px 6px;
  background-color: #ecf0f1;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
input.inline:focus {
  box-shadow: none;
}
input.inline::-webkit-input-placeholder {
  color: #b9bec7;
}
input.inline:-moz-placeholder {
  color: #b9bec7;
}
input.inline::-moz-placeholder {
  color: #b9bec7;
}
input.inline:-ms-input-placeholder {
  color: #b9bec7;
}
button.search.icon {
  color: #b9bec7;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
}
.flash-message {
  padding: 8px 15px;
  font-size: 16px;
}
.flash-message .icon {
  font-size: 14px;
  padding-right: 3px;
}
.flash-message.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-bottom: 1px solid #d6e9c6;
}
.flash-message.error {
  color: #a94442;
  background-color: #f2dede;
  border-bottom: 1px solid #ebccd1;
}
form.crud dt,
form.crud dd {
  display: inline-block;
}
form.crud dt {
  width: 110px;
  text-align: right;
}
form.crud input[type=text],
form.crud input[type=password],
form.crud textarea,
form.crud select {
  padding: 5px 6px;
  margin: 7px 10px;
  width: 320px;
  font-size: 16px;
}
form.crud textarea {
  display: inline-block;
  vertical-align: middle;
  height: 80px;
}
form.crud button {
  margin: 7px 10px;
  padding: 5px;
  width: 320px;
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  font-size: 17px;
  font-family: PTSansNarrow;
  line-height: 150%;
  color: #3f3f3f;
}
body.lang-ja {
  font-size: 16px;
}
h1 {
  letter-spacing: 1px;
  font-size: 23px;
  margin: 0;
  padding: 0 0 10px 0;
}
h2 {
  margin: 0;
  font-size: 19px;
}
.beta {
  position: relative;
  bottom: 2px;
  display: inline-block;
  line-height: 22px;
  padding: 0 6px;
  background-color: #f29715;
  color: #fff;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.icon {
  font-family: FontAwesome;
}
.outline-icon {
  font-family: Tonicons;
}
.stroke7,
.icon.stroke7 {
  font-family: Stroke7;
}
.tooltip {
  position: relative;
}
.tooltip .hint,
.tooltip .hint-disabled {
  font-family: PTSansNarrow;
  z-index: 999;
  background-color: #000;
  color: #fff;
  display: none;
  text-align: center;
  position: absolute;
  padding: 10px;
  font-size: 15px;
  line-height: 20px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.tooltip:hover .hint {
  display: inline;
}
.tooltip .hint:after {
  z-index: 998;
  position: absolute;
  content: '';
  left: 66%;
  margin-left: -25%;
  width: 0;
  height: 0;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.tooltip.top .hint:after {
  border-top: solid 10px #000;
}
.tooltip.bottom .hint:after {
  top: -10px;
  border-bottom: solid 10px #000;
}
.panel {
  position: relative;
  background-color: #fff;
  padding: 0;
  margin-bottom: 25px;
  border: 1px solid #d6d7d9;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-width: 1024px;
}
.panel h2 {
  background-color: #ecf0f1;
  font-weight: normal;
  font-size: 18px;
  padding: 6px 15px;
  border-bottom: 1px solid #d6d7d9;
}
.panel .inner {
  font-size: 16px;
  line-height: 22px;
  padding: 15px;
}
.panel .inner .description {
  color: #767676;
  padding-right: 20px;
}
.panel.centered .inner {
  text-align: center;
}
.clicktrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}
.jumbotron {
  width: 100%;
  height: 490px;
  background-image: url("/assets/images/egerton_ms_73.jpg");
  background-size: cover;
  background-position: center top;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 1px 7px rgba(0, 0, 0, 0.65);
}
.lang-el .jumbotron-left h2,
.lang-el .jumbotron-left a {
  font-family: "Palatino Linotype", Palatino, "Palatino LT STD", "Book Antiqua", Georgia, serif;
}
.jumbotron-left {
  padding-top: 90px;
  margin-right: 400px;
}
.jumbotron-left h2 {
  margin: 0;
  font-family: Merriweather;
  font-size: 34px;
  line-height: 48px;
  font-weight: 400;
}
.jumbotron-left p {
  font-family: OpenSans;
  font-size: 19px;
  line-height: 30px;
}
.jumbotron-left a {
  color: #fff;
  font-size: 19px;
  font-family: Merriweather;
  text-decoration: none;
}
.jumbotron-right {
  position: absolute;
  width: 300px;
  top: 90px;
  right: 0;
  text-align: center;
}
.jumbotron-right a {
  text-decoration: none;
  color: #cccccc;
}
.jumbotron-right input,
.jumbotron-right button {
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 300px;
  padding: 12px 15px;
  margin: 7px 0;
}
.jumbotron-right button,
.jumbotron-right button:hover {
  font-size: 19px;
  border-color: #3874b1;
}
.jumbotron-right input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #525252 !important;
}
.tile-block {
  border-style: solid;
  border-color: #e5e5e5;
  border-width: 1px 0;
  background-color: #f5f7f7;
}
.tile-block .tile {
  border-left: 1px solid #e5e5e5;
  padding: 50px 20px;
  text-align: center;
}
.tile-block .tile:first-child {
  border: none;
}
.tile-block h3 {
  font-size: 20px;
}
.tile-block p {
  color: #767676;
}
.tile-block .outline-icon {
  font-size: 65px;
  line-height: 45px;
  color: #767676;
  padding-bottom: 40px;
}
.recogito-rightnow {
  color: #767676;
  text-align: center;
  padding: 50px 0 40px;
}
.recogito-rightnow h3,
.recogito-rightnow p {
  margin: 0;
  padding: 0;
}
.recogito-rightnow .rn-title {
  padding: 40px 0 20px 0;
}
.recogito-rightnow .rn-title .outline-icon {
  font-size: 48px;
}
.recogito-rightnow .rn-title h2 {
  font-size: 20px;
  line-height: 16px;
}
.recogito-rightnow .rn-widget {
  position: relative;
  margin: 20px auto;
  padding: 0;
  width: 490px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
}
.recogito-rightnow .rn-widget h3 {
  line-height: 38px;
  font-size: 40px;
}
.recogito-rightnow .rn-widget .rn-segment {
  display: inline-block;
  padding: 20px 0;
  width: 160px;
  border-right: 1px solid #e5e5e5;
}
.recogito-rightnow .rn-widget .rn-segment:last-child {
  border: none;
}
.testimonials {
  padding: 45px 0;
  background-color: #4483c4;
  color: #fff;
  line-height: 30px;
  height: 200px;
  overflow: hidden;
}
.testimonials .inner {
  max-width: 800px;
}
.testimonials .testimonial {
  font-family: Merriweather;
  font-weight: 400;
  padding: 0 60px;
  font-style: italic;
  margin: 0 auto;
  text-align: left;
}
.testimonials .testimonial .aligner {
  height: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.testimonials .testimonial span {
  display: block;
}
.testimonials .testimonial .quote::before {
  content: '\201c';
}
.testimonials .testimonial .quote::after {
  content: '\201d';
}
.testimonials .testimonial .by,
.testimonials .testimonial .affiliation {
  font-family: OpenSans;
  text-align: right;
}
.testimonials .testimonial .by {
  padding-top: 20px;
}
.testimonials .testimonial .by::before {
  content: '\2014';
}
.partner-logos {
  padding: 70px 0;
}
.partner-logos a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 22px;
}
@media (min-width: 1025px) {
  .partner-logos a {
    margin: 0 34px;
  }
}
.partner-logos a:first-child {
  margin-left: 12px;
}
.partner-logos a:last-child {
  margin-right: 10px;
}
.partner-logos .ait {
  width: 169px;
  height: 53px;
}
.partner-logos .exeter {
  position: relative;
  top: 8px;
  width: 139px;
  height: 57px;
}
.partner-logos .hiig {
  position: relative;
  top: -4px;
  width: 165px;
  height: 44px;
}
.partner-logos .ou {
  width: 74px;
  height: 51px;
}
.partner-logos .mellon {
  width: 134px;
  height: 63px;
}
html,
body {
  min-height: 900px;
}
h2,
h3 {
  font-weight: normal;
}
h3 {
  margin: 0;
  padding: 0;
  line-height: 34px;
  font-family: PTSansNarrow;
}
.cc-window {
  -webkit-border-radius: 3px !important;
  -khtml-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
  -moz-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
}
.inner {
  position: relative;
  margin: 0 auto;
  width: 880px;
}
@media (min-width: 1025px) {
  .inner {
    width: 980px;
  }
}
.header {
  width: 100%;
  height: 100px;
}
.header .inner {
  padding-top: 12px;
}
.header .inner .logo-recogito {
  width: 208px;
  height: 70px;
}
.header .inner .logo-network {
  width: 178px;
  height: 70px;
}
.header .inner .links {
  position: absolute;
  top: 25px;
  right: 0;
}
.header .inner .links a {
  color: #4483c4;
  text-decoration: none;
  margin-left: 15px;
}
.header .inner .links a:hover {
  text-decoration: underline;
}
.header .inner .links .login:hover {
  text-decoration: none;
}
.columns::after {
  content: '';
  display: block;
  clear: both;
}
.column {
  float: left;
  box-sizing: border-box;
  padding: 20px;
}
.column:first-child {
  padding-left: 0;
}
.column:last-child {
  padding-right: 0;
}
.column.one-quarter {
  width: 25%;
}
.column.one-half {
  width: 50%;
}
.column.one-third {
  width: 33%;
}
.column.two-thirds {
  width: 66%;
}
.column.three-quarters {
  width: 75%;
}
.featurette.inner {
  margin: 0 auto;
  padding: 10px 0;
  direction: ltr;
}
.featurette.inner h3 {
  font-size: 24px;
}
.featurette.inner p {
  margin: 0;
  padding: 0 0 8px 0;
  color: #767676;
}
.featurette.inner a {
  color: #9f9f9f;
}
.featurette.inner a:hover {
  color: #717171;
}
.footer {
  background-color: #003051;
  color: #fff;
  font-size: 17px;
}
.footer .inner {
  padding: 20px 0;
}
.footer .developed-by {
  left: 0;
  width: 580px;
}
.footer .developed-by a .icon {
  color: #fff;
}
.footer .nav {
  position: absolute;
  right: 0;
  top: 20px;
}
.footer .nav a {
  color: #fff;
  padding: 0 10px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li {
  display: inline;
}
.footer a {
  color: #7391b0;
  text-decoration: none;
}
