@charset "UTF-8";
@font-face {
  font-family: 'Desyrel';
  src: url("../fonts/desyrel-webfont.eot");
  src: url("../fonts/desyrel-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/desyrel-webfont.woff") format("woff"), url("../fonts/desyrel-webfont.ttf") format("truetype"), url("../fonts/desyrel-webfont.svg#DesyrelRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 9pt;
}

@media only screen and (min-width: 769px) {
  html {
    font-size: 12pt;
  }
}

body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

div.container {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1200px;
}

@media only screen and (min-width: 769px) {
  div.container {
    padding: 0 20px;
  }
}

.left {
  float: left;
  margin: 0 25px 25px 0;
}

.right {
  float: right;
  margin: 0 0 25px 25px;
}

/* link */
a, a:link, a:visited {
  color: #3498db;
  transition: all 0.25s ease-in-out;
}

a:hover {
  color: #217dbb;
}

/* generics */
p, ul, ol {
  color: #222;
  font-weight: 400;
  line-height: 145%;
}

ul.default {
  list-style-type: square !important;
  margin: 0 0 2em 0;
}

hr {
  border: 0;
  border-top: 1px #f2f2f2 solid;
  clear: both;
  height: 1px;
  margin: 25px 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 120%;
}

h1 {
  color: #222;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin: .45em 0;
}

h2 {
  color: #7f0b0b;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin: .5em 0 1em 0;
  text-align: center;
}

h2.strong {
  letter-spacing: -1px;
  line-height: 130%;
  margin: .25em .5em .5em 0;
}

h3 {
  color: #880b0b;
  font-size: 1.6rem;
  font-weight: 300;
  margin: .5em 0 .25em;
}

h3 + p {
  margin-top: 0;
}

p.leader {
  color: #222;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 150%;
  margin: 0 0 2em;
}

div.photo {
  background-color: white;
  border: 1px solid #f2f2f2;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 4px;
  width: auto;
}

div.photo img {
  width: 100%;
}

div.photo p {
  clear: both;
  color: #222;
  font-family: Desyrel;
  margin: 0;
  padding: 10px 15px;
  text-align: center;
  width: 95%;
}

div.photo p em {
  color: #833;
  font-style: normal;
}

@media only screen and (min-width: 769px) {
  div.photo {
    float: right;
    margin-left: 20px;
    max-width: 450px;
  }
}

/* new topnav */
header.top {
  background-color: #880b0b;
  background-image: linear-gradient(to top, #5a0b10, #880b0b);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 100%;
}

header.top .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

header.top a.logo {
  display: block;
  flex: 1 0 0;
  padding: 20px 0;
}

header.top a.logo h1 {
  background: transparent url(../img/design/videobooth-logo.svg) no-repeat left center;
  background-size: contain;
  max-height: 30px;
  line-height: normal;
  margin: 0;
  padding: 0;
  width: 90%;
}

.no-svg header.top a.logo h1,
.no-backgroundsize header.top a.logo h1 {
  background: transparent url(../img/design/logo-header-white.png) no-repeat left center;
}

header.top nav {
  display: none;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

header.top nav ul li {
  align-content: center;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  margin-left: 1px;
}

header.top nav ul li a {
  background: transparent;
  color: white;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: center;
  line-height: 100%;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

header.top nav ul li a:hover {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent 60%);
}

header.top nav ul li.active a {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 60%);
}

@media only screen and (min-width: 769px) {
  header.top {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  header.top .container {
    align-items: stretch;
  }
  header.top a.logo {
    flex: 1 0 0;
    max-width: none;
    padding: 25px 0;
  }
  header.top a.logo h1 {
    max-height: 50px;
  }
  header.top nav {
    display: flex;
    flex: 3 0 0;
    opacity: 1;
    justify-content: flex-end;
  }
  header.top nav ul {
    display: flex;
    flex-flow: row nowrap;
  }
  header.top nav ul li {
    flex: inherit;
  }
  header.top nav ul li a {
    white-space: inherit;
  }
}

a.menucloser,
a.menutrigger {
  border: 2px solid white;
  border-radius: 4px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 10px 0;
  max-width: 240px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

@media only screen and (min-width: 769px) {
  a.menucloser,
  a.menutrigger {
    display: none;
  }
}

a.menucloser {
  position: fixed;
  top: 13px;
  right: 10px;
}

header.top nav.shown {
  background-color: rgba(127, 11, 11, 0.9);
  bottom: 0;
  display: flex;
  justify-content: center;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

header.top nav.shown ul {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 100%;
}

header.top nav.shown ul li a {
  font-size: 1.6rem;
  padding: 30px;
}

header.top nav.shown ul li a:hover {
  background: none;
}

header.top nav.shown ul li.active a {
  background: none;
}

.overlay {
  background-color: rgba(127, 11, 11, 0.9);
  display: none;
}

#jPanelMenu-menu {
  background-color: #680909;
  box-shadow: inset 5px 0px 8px 0px rgba(0, 0, 0, 0.25);
  margin: 0;
  padding: 0;
  z-index: 10000;
}

#jPanelMenu-menu li {
  flex: 1 0 0;
  font-size: 1.4rem;
  font-weight: 600;
}

#jPanelMenu-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: block;
  padding: 20px;
  text-decoration: none;
  text-transform: uppercase;
}

#jPanelMenu-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

/* homepage carousel */
.hpcarousel .item {
  background-color: #222;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 360px;
  text-align: center;
}

.hpcarousel .item:first-child {
  display: block;
}

.hpcarousel .item h2 {
  color: white;
  font-size: 2.25rem;
  margin: 0;
  font-weight: 300;
}

.hpcarousel .item p {
  font-size: 1em;
  color: white;
  margin: 1em auto;
  max-width: 80%;
}

.hpcarousel .item div.container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hpcarousel .item .btn {
  background-color: rgba(52, 152, 219, 0.6);
  font-size: 1.2rem;
  padding: 1em;
}

.hpcarousel .owl-lazy {
  background-color: #222;
}

.hpcarousel .worldleaders {
  background-image: url(../img/design/bigbackgrounds/worldleaders.jpg?v=v);
}

.hpcarousel .experiential {
  background-image: url(../img/design/bigbackgrounds/olympics.jpg?v=v);
}

.hpcarousel .opinions {
  background-image: url(../img/design/bigbackgrounds/opinions.jpg?v=v);
}

.hpcarousel .advanced {
  background-image: url(../img/design/bigbackgrounds/greenscreen2.jpg?v=v);
}

.hpcarousel .bespoke {
  background-image: url(../img/design/bigbackgrounds/different.jpg?v=v);
}

.hpcarousel .owl-dots {
  margin-top: 0;
  position: relative;
  top: -40px;
}

.hpcarousel .owl-dots .owl-dot span {
  border: 1px rgba(255, 255, 255, 0.5) solid;
}

.hpcarousel .owl-dots .owl-dot.active span {
  background-color: white;
}

.hpcarousel .owl-dots .owl-dot:hover span {
  background-color: rgba(255, 255, 255, 0.25);
}

@media only screen and (min-width: 769px) {
  .hpcarousel .item {
    height: 60vh;
  }
  .no-cssvhunit .hpcarousel .item {
    height: 400px;
  }
  .hpcarousel .item h2 {
    font-size: 3.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
  .hpcarousel .item p {
    font-size: 1.3rem;
    max-width: 60%;
  }
}

.owl-dots {
  margin-top: 20px;
  text-align: center;
  z-index: 10000;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 2px;
}

.owl-dots .owl-dot span {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 1000px;
  display: block;
  height: 12px;
  transition: all 0.15s ease-out;
  width: 12px;
}

.owl-dots .owl-dot.active span {
  background-color: rgba(0, 0, 0, 0.5);
}

.owl-dots .owl-dot:hover span {
  background-color: rgba(0, 0, 0, 0.25);
}

ul.slick-dots {
  margin: 20px 0 0;
  padding: 0;
  text-align: center;
  z-index: 10000;
}

ul.slick-dots li {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 1000px;
  display: inline-block;
  height: 12px;
  margin: 0 2px;
  transition: all 0.15s ease-out;
  width: 12px;
}

ul.slick-dots li button {
  display: none;
}

ul.slick-dots li.slick-active {
  background-color: rgba(0, 0, 0, 0.5);
}

ul.slick-dots li:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

.threebest {
  margin: 10px 0 45px;
  width: 100%;
}

.threebest div.three div.item {
  font-weight: normal;
  padding-left: 100px;
  position: relative;
}

.threebest div.three div.item h3 {
  font-weight: 300;
  margin: 0 !important;
  padding: 0;
}

.threebest div.three div.item p {
  font-size: 1rem;
  line-height: 150%;
  margin: .75em 0;
  padding: 0;
}

.threebest div.three div.item a.icon {
  width: 60px;
  position: absolute;
  top: 0;
  left: 20px;
}

.threebest div.three div.item img {
  display: block;
  width: 100% !important;
}

.showcase {
  background-color: #f8f8f8;
  padding: 20px 0;
}

.showcase h2 {
  text-align: center  !important;
}

.showcase.appshowcase {
  background-color: #fcfcfc;
  border-bottom: 1px dotted #eee;
}

.showcase h2 {
  text-align: left;
  margin-bottom: 0;
}

.showcase h2 + p {
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.showcase h3 {
  color: #555;
  text-align: center;
}

.showcase ul {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.showcase ul li {
  background-color: white;
  border-radius: 4px;
  width: 100%;
  position: relative;
  text-align: center;
}

.showcase ul li a {
  background: white;
  display: block;
  min-height: 100%;
  position: relative;
  text-decoration: none;
  transition: all 0.05s ease-in;
  z-index: 9;
}

.showcase ul li a:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.showcase ul li h3 {
  font-size: 1.4rem;
  margin: 0;
  min-height: 90px;
  text-align: center;
  padding: 20px;
}

.showcase ul li img {
  margin: 0 auto !important;
  max-height: 300px;
  max-width: 100%;
  width: auto !important;
}

.showcase ul li p {
  margin: 0;
  padding: 20px;
  text-align: center;
}

.showcase ul li p.note {
  font-family: Desyrel;
  font-size: 1.2rem;
  letter-spacing: -1px;
  margin: 0;
  padding: 20px;
  min-width: 100%;
  text-align: center;
}

.showcase ul li.image a {
  background: linear-gradient(to top, #eee 0%, #eee 30%, #fafafa 30%, #f3f3f3 100%);
}

.showcase ul.projects li iframe {
  display: none;
  min-height: 280px;
  width: 100%;
}

.showcase ul.projects li div {
  position: relative;
}

.showcase ul.projects li a.play {
  background: transparent url(../img/design/play.png?v=1) no-repeat center center;
  border-radius: 12px;
  cursor: pointer;
  display: inline-block;
  width: 100px;
  min-height: inherit !important;
  height: 75px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -37px;
  margin-left: -50px;
  transition: all ease-in-out 0.25s;
}

.showcase ul.projects li a.play:hover {
  transform: scale(1.05);
}

@media only screen and (min-width: 769px) {
  .showcase {
    padding: 40px 0;
  }
  .showcase ul li {
    margin: .5%;
    width: 32.33%;
  }
  .showcase ul li img {
    max-height: none;
  }
  .showcase ul.projects li {
    width: 49%;
    margin: .5%;
  }
}

@media only screen and (min-width: 960px) {
  .showcase {
    padding: 40px 0;
  }
  .showcase ul li {
    margin: .5%;
    width: 24%;
  }
  .showcase ul.projects li {
    width: 32.33%;
    margin: .5%;
  }
}

.applications li p {
  display: none;
}

.applications li img {
  max-height: none !important;
  min-width: 100%;
  max-width: none;
}

.custom {
  border: 1px #ccc dotted;
  border-radius: 10px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.custom h3 {
  margin: 0 0 .25em;
  padding: 0;
}

.custom p {
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 769px) {
  .custom {
    max-width: 500px;
  }
}

/* happy customers */
.happycustomers {
  clear: both;
  padding: 40px 0;
}

.happycustomers ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.happycustomers ul li blockquote {
  color: #222;
  font-style: normal;
  font-weight: 100;
  margin: 0;
  padding: 0;
  text-align: center;
}

.happycustomers ul li blockquote p {
  line-height: 150%;
}

.happycustomers ul li blockquote cite {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}

.happycustomers ul li blockquote cite p {
  color: #aaa !important;
}

.happycustomers ul li img {
  display: block;
  margin: 0 auto !important;
  width: auto !important;
}

/* breadcrumb */
nav.breadcrumb ul {
  font-size: 0.75rem;
  list-style-type: none;
  margin: 0 0 10px -10px;
  padding: 0;
}

nav.breadcrumb ul li {
  display: inline-block;
}

nav.breadcrumb ul li a {
  background: #f8f8f8;
  border-right: 1px solid white;
  color: #222;
  display: inline-block;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 2px;
  text-decoration: none;
}

nav.breadcrumb ul li a:hover {
  background: #f0f0f0;
  color: #555;
  text-decoration: underline;
}

nav.breadcrumb ul li:first-child a {
  border-radius: 4px 0 0 4px;
}

nav.breadcrumb ul li:last-child a {
  border-right: 0;
  border-radius: 0 4px 4px 0;
}

@media only screen and (min-width: 769px) {
  nav.breadcrumb ul {
    margin: 20px 0 15px 0;
  }
  nav.breadcrumb ul li a {
    padding: 10px;
  }
}

.about-testimonials {
  padding-top: 40px;
}

ul.quotes {
  list-style: none;
  margin: 0 0 2em 0;
  padding: 0;
}

ul.quotes li {
  margin: 0;
  padding: 0 15px;
}

ul.quotes li img {
  max-width: 100%;
}

ul.quotes li blockquote {
  font-size: 1.2rem;
  margin: 0;
}

ul.quotes li blockquote p {
  font-weight: 300;
}

/* one-off testimonials */
.testimonial {
  clear: both;
  margin: 25px 5%;
  position: relative;
  text-align: center;
}

.testimonial img {
  display: block;
  margin: 0px auto 20px auto;
  max-width: 100%;
}

.testimonial blockquote {
  color: #222;
  float: right;
  font-size: 1.2rem;
  font-style: normal;
  margin: 5px 0 0;
}

.testimonial blockquote p {
  font-weight: 300;
  margin: 0 0 .5em 0;
  padding: 0;
}

.testimonial blockquote cite {
  font-size: 1rem;
}

.testimonial blockquote cite p {
  color: #888;
  font-weight: 600;
  margin: 0;
}

@media only screen and (min-width: 769px) {
  .testimonial {
    text-align: left;
  }
  .testimonial img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 300px;
  }
  .testimonial blockquote {
    padding: 0 0 0 320px;
    text-align: left;
  }
}

.productheader {
  background: #f2f2f2;
  border-bottom: 1px #ddd solid;
  padding: 0 0 55px 0;
}

.productheader nav.breadcrumb ul li a {
  background-color: white;
  border-right: 1px solid #eee;
}

.productheader nav.breadcrumb ul li:last-child a {
  border-right: 0;
}

.productheader .container {
  position: relative;
}

.productheader h1 {
  line-height: 120%;
}

.productheader p.productsummary {
  color: #222;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.productheader .producttext {
  margin-top: 20px;
}

.productheader .plainproducttext {
  margin-top: 10px;
}

.productheader .hero {
  margin-top: 20px;
  margin-bottom: -100px;
}

.productheader .hero img {
  display: none;
  max-height: 100%;
  max-width: 100%;
}

.productheader .hero img:first-child {
  display: block;
}

.productheader .hero .note {
  background: transparent url(../img/design/note-arrow.png) no-repeat 20px top;
  color: #6a6a6a;
  font-family: Desyrel;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: -1px;
  line-height: 120%;
  margin-top: -35px;
  padding-left: 60px;
  padding-top: 46px;
  transform: rotate(-2deg);
}

.productheader .photohero {
  margin-bottom: -100px;
  transform: rotate(1deg);
}

.productheader.applicationheader .hero {
  margin-top: 10px;
}

.productheader.casestudyheader .herotext {
  max-width: 100%;
  text-align: center;
}

.productheader.casestudyheader .herotext .breadcrumb {
  text-align: left;
}

.productheader.casestudyheader .hero {
  margin: 20px 0;
  width: 100% !important;
  text-align: center;
}

.productheader.casestudyheader .hero iframe {
  min-height: 280px;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .productheader nav.breadcrumb {
    margin-bottom: 40px;
  }
  .productheader .herotext {
    float: left;
    max-width: 60%;
  }
  .productheader .hero {
    float: right;
    width: 30%;
    z-index: 980 !important;
  }
  .productheader .hero .note {
    margin-bottom: -35px;
  }
  .productheader.applicationheader .herotext {
    max-width: 55%;
  }
  .productheader.applicationheader .hero {
    width: 40%;
    z-index: 980 !important;
  }
  .productheader.casestudyheader .herotext {
    float: none;
    max-width: none;
  }
  .productheader.casestudyheader .hero iframe {
    min-height: 600px;
    margin: 0 10%;
    width: 80%;
  }
}

.casestudytext {
  padding: 30px 20px !important;
}

.casestudytext .maincolumn h2 {
  text-align: left;
}

.casestudytext .rightcolumn {
  text-align: left;
}

@media only screen and (min-width: 769px) {
  .casestudytext .maincolumn {
    float: left;
    width: 60%;
  }
  .casestudytext .rightcolumn {
    float: right;
    width: 35%;
  }
  .casestudytext .rightcolumn h2 {
    text-align: left;
  }
}

.product-page p.leader {
  font-weight: 300;
  width: 620px;
}

.featurelist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.featurelist li {
  margin-bottom: 20px;
  text-align: center;
}

.featurelist li img {
  height: 60px;
  margin-bottom: 20px;
}

.featurelist li h3 {
  color: #7f0b0b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 .25em;
  padding: 0;
  text-transform: uppercase;
}

.featurelist li p {
  margin-left: 10%;
  margin-right: 10%;
}

.featurelist.vert {
  display: block;
}

.featurelist.vert li {
  border-top: 4px solid #7f0b0b;
  position: relative;
  width: auto;
  margin: 0 0 24px 0;
  padding-top: 12px;
  text-align: left;
}

.featurelist.vert li h3, .featurelist.vert li p {
  text-align: left;
  margin: 4px 0;
}

@media only screen and (min-width: 769px) {
  .featurelist {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .featurelist li {
    margin: 0 1% 20px;
    width: 31.33%;
  }
}

@media only screen and (min-width: 769px) {
  .casestudybody {
    margin: 0 auto;
    max-width: 75%;
  }
}

.loader {
  background: transparent url(../img/design/loader.gif) no-repeat center center !important;
  min-height: 80px;
}

.loader .item {
  display: none;
  min-height: 120px;
}

.owl-loaded {
  background: none !important;
}

.owl-loaded .item {
  display: block !important;
}

.product-section {
  padding-top: 40px;
}

.product-section h2 {
  margin: 0 0 1.5em;
  padding: 0;
  text-align: center;
}

.product-section h2 + p,
.product-section p.large {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 150%;
  margin: -1.5em 10% 1em;
  text-align: center;
}

.product-section p.large {
  margin-top: 1em;
}

.product-gallery {
  margin: 10px 0 45px !important;
}

.product-gallery img {
  max-height: 320px;
  margin: 0 10px;
  max-width: 100%;
}

ul.slick-dots {
  bottom: -35px !important;
}

@media only screen and (min-height: 500px) {
  .product-gallery img {
    max-height: 450px;
  }
}

.product-options .options .option {
  background: linear-gradient(to bottom, #f3f3f3 0%, #fafafa 30%, #eee 30%, #eee 100%);
  border: 1px solid #f2f2f2;
  margin-bottom: 20px;
  padding: 30px;
}

.product-options .options .option h3 {
  margin: 0;
  padding: 0;
}

.product-options .options .option img {
  max-width: 100%;
}

.product-options .options .option p {
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 769px) {
  .product-options .options {
    align-items: stretch;
    display: flex;
    flex-flow: flow nowrap;
    justify-content: space-between;
  }
  .product-options .options .option {
    max-width: 31.33%;
  }
}

/* grey box */
.greybox {
  background-color: #f2f2f2;
  border: 1px #e5e5e5 solid;
  box-shadow: inset 1px 1px 0px white;
  position: relative;
  z-index: 850;
  border-radius: 5px;
}

.greybox + .greybox {
  margin-top: 15px;
}

.greybox.quotebox {
  margin-top: 10px;
}

.greybox > div {
  padding: 20px;
}

.greybox hr {
  border: 0;
  border-bottom: 1px white solid;
  border-top: 1px #ddd solid;
  clear: both;
  height: 1px;
  margin: 25px -19px;
}

.greybox h2 {
  margin: 0;
}

.greybox h3 {
  color: #666;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}

@media only screen and (min-width: 769px) {
  .greybox {
    display: flex;
  }
  .greybox > div:first-child {
    flex: 1 0 0;
  }
  .greybox > div:last-child {
    border-left: 1px dotted #ccc;
    flex: 1 0 0;
  }
}

ol.phones {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: block;
}

ol.phones li {
  margin: 0;
  padding: 0;
  display: block;
}

ol.phones li p.label {
  color: #777;
  font-size: 0.75rem;
  margin: 0;
  padding: 0;
}

ol.phones li p.num {
  color: #333;
  font-weight: 600;
  padding: 0 0 8px 0;
  margin: 0;
}

ol.phones li.uk p.num {
  font-size: 1.6rem;
}

ol.phones li.us p.num,
ol.phones li.in p.num {
  font-size: 1.2rem;
}

.loadmorebtn,
.btnpdf {
  background: #ededed;
  border: 1px #a1a1a1 solid;
  border-radius: 4px;
  color: #222 !important;
  box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.5);
  display: block;
  font-weight: 600 !important;
  margin-bottom: 4px;
  min-height: 52px;
  padding: 1em 1em 1em 60px;
  position: relative;
  text-decoration: none;
}

.loadmorebtn:hover,
.btnpdf:hover {
  background: #f2f2f2;
  border: 1px #ccc solid;
  text-decoration: underline;
}

.loadmorebtn span,
.btnpdf span {
  background: transparent url(..//img/design/icon-pdf.png) no-repeat left top;
  display: block;
  height: 32px;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 26px;
}

.loadmorebtn {
  margin-left: 80px;
  padding-left: 15px;
}

.btnpdf {
  display: inline-block;
}

.dblbtn {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
  position: relative;
  max-width: 100%;
}

.dblbtn li {
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.dblbtn li a {
  border-radius: 5px;
  color: white;
  display: block;
  height: 100%;
  padding: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.dblbtn li.hire a {
  background: #cf0104;
}

.dblbtn li.hireoff a {
  background: #cf0104;
  color: #999;
  opacity: 0.2;
}

.dblbtn li.sale a {
  background: #3498db;
}

.piclist {
  clear: both;
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

.piclist li {
  display: inline-block;
  position: relative;
}

.piclist h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 300;
  margin: 15px 0 6px 0;
}

.piclist h4 {
  color: #333;
  font-size: 1.1rem;
  margin: 0 0 6px 0;
}

.piclist p {
  font-size: 0.8rem;
  line-height: 150%;
  margin: .25em 0;
}

.piclist div.image img {
  border: 1px #f2f2f2 solid;
  padding: 4px;
}

.piclist.pl-inline li {
  padding: 0 0 15px 0;
  max-width: 300px;
}

.piclist.pl-inline li h3 {
  font-weight: 600;
  margin-top: 0;
}

.piclist.pl-inline li p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
}

.piclist.pl-large li {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-content: stretch;
}

.piclist.pl-large li img {
  flex: 1 0 0;
}

.piclist.pl-large li .text {
  flex: 2 0 0;
  padding: 0 15px;
}

.piclist.pl-small li {
  padding: 0 20px 10px 80px;
  min-height: 100px;
}

.piclist.pl-small li img {
  left: 0;
  width: 70px;
  position: absolute;
  top: 0;
}

.piclist.pl-small li h3 {
  line-height: 120%;
  margin: 5px 0 10px 0;
}

.piclist.pl-fullsize li {
  padding: 0 0 10px 0px;
  max-width: 300px;
}

.piclist.pl-fullsize li p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
}

.piclist.pl-stacked {
  display: block !important;
}

.piclist.pl-stacked li {
  display: block !important;
  height: auto !important;
  min-height: inherit !important;
  width: auto !important;
}

@media only screen and (min-width: 769px) {
  .piclist {
    display: flex;
    flex-flow: row wrap;
  }
  .piclist li {
    width: 33.33%;
  }
}

/* distributor list */
.distributors {
  list-style-type: none;
  margin: 20px -20px;
  padding: 0;
}

.distributors li {
  float: left;
  display: inline-block;
  margin-left: 20px;
  min-height: 150px;
  padding: 0 0 10px 80px;
  position: relative;
  max-width: 220px;
}

.btn,
input.send {
  background-color: #3498db;
  border: 0;
  border-radius: 4px;
  color: white !important;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 100%;
  padding: .75em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s linear !important;
  vertical-align: middle;
}

.btn:hover,
input.send:hover {
  background-color: #217dbb;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.btn-large,
input.send {
  font-size: 1rem;
}

/* contact form */
div.contactform {
  float: left;
  margin-bottom: 24px;
  width: 450px;
}

div.contactform p.success {
  background-color: #daebad;
  border: 1px #b1cb6e solid;
  color: #596e23;
  margin: 0;
  padding: 1em;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: inset 1px 1px 1px white;
}

div.contactform p.failure {
  background-color: #f7d9d9;
  border: 1px #c00 solid;
  color: #c00;
  margin: 0;
  padding: 1em;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: inset 1px 1px 1px white;
}

form.contactform {
  display: block;
  margin-top: -1px;
  margin-bottom: 24px;
}

form.contactform h2 {
  text-align: left;
}

form.contactform .nope {
  display: none;
}

form.contactform dl dt {
  color: #555;
  display: block;
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

form.contactform dl dt h3 {
  border-bottom: 1px #ccc dotted;
  color: #7f0b0b;
  margin-bottom: 1em;
  padding: 0 0 1em 0;
}

form.contactform dl dd {
  margin: 0;
  padding: 0 0 10px 0;
}

form.contactform dl dd input {
  border: 1px #ccc solid;
  border-radius: 2px;
  color: #222;
  padding: 10px;
  font-size: 16px;
  width: 100%;
}

form.contactform dl dd textarea {
  border-radius: 2px;
  border: 1px #ccc solid;
  color: #222;
  font-size: 16px;
  height: 150px;
  padding: 10px;
  width: 100%;
}

form.contactform dl dd select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border: 1px #ccc solid;
  color: #222;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

form.contactform dl dd ul {
  list-style-type: none;
  margin: 8px 0 0 0;
  padding: 0;
}

form.contactform dl dd ul li {
  list-style-type: none;
  padding-bottom: 5px;
  position: relative;
}

form.contactform dl dd ul li input {
  display: inline;
  position: absolute;
  top: 3px;
  width: 35px;
  border: 0px;
  vertical-align: top;
}

form.contactform dl dd ul li label {
  clear: none;
  display: inline-block;
  padding-left: 30px;
}

@media only screen and (min-width: 769px) {
  form.contactform {
    float: left;
    width: 64%;
  }
}

@media only screen and (min-width: 769px) {
  .news {
    float: left;
    width: 65%;
  }
  .sidebar {
    float: right;
    width: 33%;
  }
}

.sidebar .box {
  background-color: #f2f2f2;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.sidebar h2, .sidebar h3, .sidebar h4 {
  text-align: left;
}

.sidebar h2 {
  color:   #cccccc !important;
  letter-spacing: -1px;
  margin: 10px 0 0 0;
  padding: 0;
}

.sidebar h4 {
  color: #880b0b;
  margin: 5px 0;
  padding: 0;
}

.sidebar h4 + p {
  margin-top: 0;
}

.sidebar .image {
  float: right;
  max-width: 120px;
}

.sidebar .mapimage {
  margin: 0 0 10px 10px;
}

.sidebar .image img {
  background-color: white;
  border: 1px #f2f2f2 solid;
  max-width: 100%;
  padding: 3px;
}

.sidebar .fb-like-box {
  margin: -8px -8px 0 -8px;
}

#mc_embed_signup label {
  font-weight: 600;
  display: block;
  padding-bottom: 4px;
}

#mc_embed_signup input.email {
  border: 1px #ccc solid;
  color: #222;
  margin-bottom: 4px;
  padding: 10px;
  width: 100%;
}

#mc_embed_signup .btn {
  display: block;
  padding: .5em 1em;
  width: 100%;
}

p.error {
  background-color: #ffefef;
  border-left: 3px #d9b2b2 solid;
  color: #800;
  font-size: 1rem;
  margin: 0;
  padding: 8px;
}

.phonebox {
  border-radius: 5px;
  padding: 0 0 10px 0;
}

.phonebox dt,
.phonebox dd {
  text-align: left !important;
}

/* client list */
.clientlist {
  align-items: flex-start;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 10px 0 30px;
  padding: 0 0 10px 10px;
}

.clientlist li {
  border: 1px #f2f2f2 solid;
  list-style-type: none;
  padding: 0;
  position: relative;
  width: 100%;
}

.clientlist li section {
  background-color: white;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  color: inherit;
  display: block;
  margin: 30px;
  min-height: 120px;
  text-decoration: none;
}

.clientlist li section:hover {
  cursor: default;
  z-index: 6;
}

.clientlist li section:hover div {
  opacity: 1;
}

.clientlist li div {
  align-items: flex-start;
  display: flex;
  background-color: rgba(0, 0, 0, 0.75);
  margin-top: 180px;
  padding: 20px;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
  transition: all 0.15s linear;
}

.clientlist li div h2 {
  color: #f2f2f2;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.25em;
  padding: 0;
  z-index: 5;
  width: 100%;
}

.clientlist li div p {
  color: #f2f2f2;
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
  text-align: center !important;
  z-index: 5;
  width: 100%;
}

.clientlist li span.plus {
  background: transparent url(..//img/design/plus.png) no-repeat left top;
  display: block;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
}

.clientlist li.clickable a {
  cursor: pointer;
}

@media only screen and (max-width: 769px) {
  .clientlist li span.plus {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .clientlist li {
    width: 25%;
  }
  .clientlist li section {
    background-position: center center;
    min-height: 190px;
  }
  .clientlist li div {
    margin-top: 0;
    min-height: 250px;
    opacity: 0;
  }
  .clientlist li span.plus {
    display: none;
  }
}

p.typenav {
  display: block;
  line-height: 110%;
  margin: 0 10% 20px;
  text-align: center;
}

p.typenav a {
  background-color: #f8f8f8;
  border-radius: 4px;
  margin-right: 10px;
  margin-bottom: 8px;
  display: inline-block;
  padding: 12px;
}

.about-clientlist ul.clientlist li {
  width: auto !important;
}

.about-section {
  clear: both;
}

.about-clientlist {
  background-color: #fafafa;
  padding-bottom: 30px;
  padding-top: 40px;
}

.about-latestnews {
  background-color: #f2f2f2;
  padding: 40px 0;
}

.about-latestnews ul.newschurn {
  margin: 0 auto;
}

.about-latestnews ul.newschurn li {
  padding-left: 0;
}

@media only screen and (min-width: 769px) {
  .about-latestnews ul.newschurn li .text {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .about-latestnews ul.newschurn li .text img.fb {
    flex: 1 0 0;
    margin-right: 20px;
    max-width: 50% !important;
    width: auto !important;
  }
  .about-latestnews ul.newschurn li .text .textwrap {
    flex: 1 0 0;
  }
}

/* news */
ul.newschurn {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.newschurn li {
  padding: 0;
  position: relative;
}

ul.newschurn li div.datestamp {
  background-color: #f2f2f2;
  border: 1px #ccc solid;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  padding: 9px;
  text-align: left;
}

ul.newschurn li div.datestamp .month,
ul.newschurn li div.datestamp .year {
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
}

ul.newschurn li div.datestamp .day {
  color: #555;
}

ul.newschurn li ul.newslink {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.newschurn li ul.newslink li {
  background-color: #f2f2f2;
  background-position: 8px center;
  background-repeat: no-repeat;
  padding: 8px 5px 8px 32px;
}

ul.newschurn li h2.type {
  background-color: #f8f8f8;
  border-bottom: 1px #ddd solid;
  color: #666;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 20px;
  margin-left: -20px;
  text-transform: uppercase;
}

ul.newschurn li img {
  max-width: 100%;
}

@media only screen and (min-width: 769px) {
  ul.newschurn li {
    padding-left: 80px;
  }
  ul.newschurn li div.datestamp {
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 70px;
  }
  ul.newschurn li div.datestamp .month,
  ul.newschurn li div.datestamp .year {
    display: block;
    font-size: 0.75rem;
  }
  ul.newschurn li div.datestamp .year {
    font-size: 0.9rem;
  }
  ul.newschurn li div.datestamp .day {
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%;
  }
}

.splitbutton {
  border-top: 1px solid #f2f2f2;
  clear: both;
  margin-top: 40px;
  text-align: center;
}

.splitbutton .btn {
  transform: translateY(-50%);
}

div.text {
  margin-top: 5px;
  overflow: hidden;
}

/* page footer */
footer.bottom {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.75rem;
  margin-top: 40px;
  padding-top: 10px;
}

footer.bottom h2 {
  clear: both;
  color: #7f0b0b;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: normal;
  margin: 1.5em 0 .5em 0;
  text-transform: uppercase;
}

footer.bottom h3 {
  color: #777;
  font-size: 1rem;
  font-weight: normal;
  margin: 1em 0 0 0;
}

footer.bottom div.tierone {
  padding-bottom: 35px;
}

footer.bottom div.tierone div.contents {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

footer.bottom div.tierone div.contents section {
  padding-right: 20px;
  width: 48%;
}

footer.bottom div.tierone div.contents section h2 {
  text-align: inherit;
}

footer.bottom div.tierone div.contents section:last-child {
  padding-right: 0;
}

footer.bottom div.tierone section.enquiresocial input.btn {
  padding-top: 4px;
  padding-bottom: 4px;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons {
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li {
  float: left;
  padding: 0 !important;
  margin: 0 5px 5px 0 !important;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a {
  border-radius: 4px;
  background-color: #eee;
  height: 40px;
  padding: 8px;
  width: 40px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a:hover {
  background-color: #d1e9fb;
  border-color: #3498db;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a i {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 24px;
  width: 24px;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a span {
  visibility: hidden;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.twitter {
  background-color: #4099ff;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.twitter i {
  background-image: url(../img/social/socialIconTwitter.png);
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.linkedin {
  background-color: #007bb6;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.linkedin i {
  background-image: url(../img/social/socialIconLinkedin.png);
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.facebook {
  background-color: #3B5998;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.facebook i {
  background-image: url(../img/social/socialIconFacebook.png);
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.googleplus {
  background-color: #dd4b39;
}

footer.bottom div.tierone section.enquiresocial ul.socialbuttons li a.googleplus i {
  background-image: url(../img/social/socialIconGoogleplus.png);
}

footer.bottom div.tiertwo {
  background-color: #f0f0f0;
  padding: 40px 0;
}

footer.bottom div.tiertwo .browsecolumns h2 {
  letter-spacing: normal;
  margin: 0 0 2em 0;
  text-align: left;
}

footer.bottom div.tiertwo .browsecolumns h3 {
  color: #666;
  font-weight: 600;
  margin: 0 0 1rem;
  text-align: left;
  text-transform: uppercase;
}

footer.bottom div.tiertwo .browsecolumns h3 a {
  color: #666;
  text-decoration: none;
}

footer.bottom div.tiertwo .browsecolumns div.columns {
  flex: 2 0 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer.bottom div.tiertwo .browsecolumns div.columns div.column {
  list-style-type: none;
  margin: 0 10px 4px 0;
  padding: 0;
}

footer.bottom div.tiertwo .browsecolumns div.columns div.column ul {
  list-style: none;
  margin: 0 0 2em 0 !important;
  padding: 0;
}

footer.bottom div.tiertwo .browsecolumns div.columns div.column ul li {
  margin-bottom: 4px;
}

footer.bottom div.tiertwo .browsecolumns div.columns div.column ul li a {
  color: #666;
  text-decoration: none;
}

footer.bottom div.tiertwo .browsecolumns div.columns div.column ul li a:hover {
  text-decoration: underline;
}

footer.bottom div.tierthree {
  background-color: #ddd;
  font-size: 0.8rem;
  position: relative;
}

footer.bottom div.tierthree .container div {
  align-items: center;
  display: flex;
  padding: 10px 0;
  width: 100%;
}

footer.bottom div.tierthree .container div p {
  flex-grow: 1;
  margin: 0;
  padding: 0 0 0 20px;
}

footer.bottom div.tierthree .container div p.credit {
  color: #ccc;
  display: none;
  text-align: right;
}

footer.bottom div.tierthree .container div p.credit a {
  color: #bbb;
}

footer.bottom div.tierthree .container div p.credit a:hover {
  color: #222;
}

@media only screen and (min-width: 769px) {
  footer.bottom div.tierone div.contents {
    flex-flow: row nowrap;
  }
  footer.bottom div.tierone div.contents .company {
    flex: 3 0 0;
  }
  footer.bottom div.tierone div.contents .headoffice {
    flex: 1 0 0;
  }
  footer.bottom div.tierone div.contents .callus {
    flex: 1 0 0;
  }
  footer.bottom div.tierone div.contents .enquiresocial {
    flex: 2 0 0;
  }
  footer.bottom div.tiertwo div.browsecolumns {
    display: flex;
  }
  footer.bottom div.tiertwo div.browsecolumns h2 {
    flex: 1 0 0;
  }
  footer.bottom div.tiertwo div.browsecolumns div.columns {
    display: flex;
    flex: 5 0 0;
  }
  footer.bottom div.tiertwo div.browsecolumns div.columns div.column {
    flex: 1 0 0;
  }
  footer.bottom div.tierthree .container div p.credit {
    display: block;
  }
}

.column {
  margin: 40px 10% 20px;
}

div.stats {
  background: #7f0b0b url(../img/design/chartbg.jpg) no-repeat left center;
  background-size: cover;
  border-bottom: 4px solid #7f0b0b;
  border-top: 4px solid white;
  padding: 30px 0 30px 0;
}

.productheader + div.stats {
  margin-top: -20px;
  padding-top: 70px;
}

div.stats.vert {
  background: transparent;
}

div.stats.vert div.container {
  display: block !important;
}

div.stats.vert div.stat {
  background-image: linear-gradient(to bottom left, #3498db, #7f0b0b);
  width: 100%;
}

div.stats h2 {
  color: white;
  padding: 0 0 .5em;
  margin: 0;
}

div.stats div.stat {
  background-image: linear-gradient(to top right, rgba(255, 255, 255, 0.1), transparent);
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0;
  text-align: center;
}

div.stats div.stat h2 {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius-top-left: 10px;
  border-radius-top-right: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: normal;
  margin: 0;
  padding: 8px 0;
  text-transform: uppercase;
}

div.stats div.stat p.number {
  color: white;
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 769px) {
  div.stats {
    padding: 30px 0;
  }
  .productheader + div.stats {
    padding-top: 80px;
  }
  div.stats .container {
    display: flex;
    justify-content: space-between;
  }
  div.stats div.stat {
    width: 28%;
  }
  div.stats div.stat p.number {
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 960px) {
  div.stats div.stat p.number {
    font-size: 3.2rem;
  }
}

table.features {
  display: table;
  margin: 20px 0;
  width: 100%;
}

table.features th, table.features td {
  padding: 8px;
}

table.features th.feature {
  width: 48%;
}

table.features th.level {
  text-align: center;
  width: 13%;
}

table.features thead tr:last-child {
  border-bottom: 1px dotted #ccc;
}

table.features tbody tr {
  border-bottom: 1px dotted #ccc;
}

table.features tbody tr th {
  text-align: left;
  width: 25%;
}

table.features tbody tr td {
  text-align: center;
}

span.tickcross {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 30px;
  width: 30px;
}

span.tickcross em {
  visibility: hidden;
}

span.tickcross.tick {
  background-image: url(../img/design/tick.png);
}

span.tickcross.cross {
  background-image: url(../img/design/cross.png);
}

@media only screen and (min-width: 769px) {
  span.tickcross {
    height: 45px;
    width: 45px;
  }
}

div.fade {
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 990 !important;
  background-color: black;
  filter: alpha(opacity=50);
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}

div.pop {
  background-color: white;
  border: 10px #222 solid;
  left: 50%;
  margin-left: -150x;
  width: 300px;
  padding: 2em;
  position: fixed;
  top: 100px;
  z-index: 999;
}

div.pop h2,
div.pop p {
  margin: 0;
  padding: 0;
}

div.pop p {
  margin: 1em 0 0 0;
}

table.admin {
  font-size: 0.8rem;
}

table.admin tr th,
table.admin tfoot td {
  background-color: #222;
  color: white;
  padding: 8px 20px 8px 4px;
  text-align: left;
}

table.admin tr td {
  border-bottom: 1px #eee dotted;
  padding: 8px 20px 8px 4px;
}

table.admin tr td.date {
  white-space: nowrap;
}

table.admin tr td.cb {
  text-align: right;
}

table.admin tfoot td {
  text-align: right;
}

body div#cookie-message {
  background-color: #333;
  border-bottom: 1px #666 solid;
  display: none;
  padding: 5px 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 9999;
}

body div#cookie-message > p {
  color: #888 !important;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

body div#cookie-message > p a {
  color: #aaa !important;
}

.protip {
  background-color: #ddd;
  border-radius: 20000px;
  box-sizing: border-box;
  color: #666;
  display: inline-block;
  font-family: serif;
  font-size: 12px;
  font-weight: bold;
  height: 18px;
  line-height: 18px;
  position: relative;
  text-align: center;
  top: -2px;
  width: 18px;
}

.featurerows {
  background-color: #f8f8f8;
  margin-top: 40px;
  padding: 40px 0;
  max-width: 100%;
}

.featurerows .featurerow {
  border-bottom: 1px #ccc dotted;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.featurerows .featurerow div.text {
  text-align: left;
}

.featurerows .featurerow div.text h2 {
  margin-top: 0;
  text-align: left;
}

.featurerows .featurerow div.text p:last-child {
  margin-bottom: 0;
}

.featurerows .featurerow div.img img {
  max-width: 100%;
}

@media only screen and (min-width: 769px) {
  .featurerows .featurerow {
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .featurerows .featurerow div.text {
    flex: 2;
    padding-right: 40px;
  }
  .featurerows .featurerow div.img {
    flex: 1;
  }
  .featurerows .featurerow:nth-child(odd) div.text {
    order: 2;
    padding-left: 40px;
  }
  .featurerows .featurerow:nth-child(odd) div.img {
    order: 1;
  }
}

.ui-datepicker {
  background-color: #f2f2f2;
  border: 2px #eee solid;
  border-top: 5px #eee solid;
  width: 25em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 4em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
  line-height: 1.8em;
  text-align: center !important;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
  line-height: 1.8em;
  text-align: center !important;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 4em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: 600;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
  text-align: center;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: center;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
