@import url(//fonts.googleapis.com/css?family=Titillium+Web);
* {
  box-sizing: border-box; }

@media only screen and (max-width: 900px) {
  body {
    padding-top: 45px; } }

header {
  position: fixed;
  top: 0;
  background: white;
  width: 100%;
  padding: 20px;
  z-index: 999;
  box-shadow: 0px 2px 37px -13px rgba(0, 0, 0, 0.75); }
  header .container {
    max-width: 1200px;
    margin: auto; }
  header .logo {
    display: block;
    max-width: 200px;
    float: left; }
    header .logo img {
      width: 100%; }
  header nav {
    float: right;
    padding-top: 15px; }
    header nav a {
      color: #333;
      text-decoration: none;
      margin-left: 25px;
      padding: 2px;
      transition: color 0.5s; }
      header nav a:hover, header nav a.active {
        color: #ff5349; }
      header nav a.nav-btn {
        background-color: #ff5349;
        color: white;
        padding: 2px 8px;
        transition: all 0.5s; }
        header nav a.nav-btn:hover {
          background: #333;
          color: white; }
    @media only screen and (max-width: 980px) {
      header nav {
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        top: 90px;
        background: white; }
        header nav a {
          display: block;
          width: 100%;
          padding: 0;
          margin: 0;
          border-bottom: 1px solid #eee;
          padding: 10px 20px; }
          header nav a.nav-btn {
            padding: 10px 20px;
            border: none;
            width: 50%;
            float: left;
            text-align: center;
            border: 1px solid white; } }
  header .mobile-nav-toggle {
    display: none;
    background-image: url(../images/elements/mobnav.png);
    width: 40px;
    height: 40px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    float: right;
    margin: 6px 10px 0 0;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s; }
    @media only screen and (max-width: 980px) {
      header .mobile-nav-toggle {
        display: block; } }
    header .mobile-nav-toggle.active {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }

.panel {
  text-align: left;
  padding: 20px; }
  .panel.panel-centered {
    text-align: center; }
    .panel.panel-centered p {
      margin: 5px 0; }
  .panel p {
    font-size: 1em; }
  .panel img {
    width: 100%; }

.info-text {
  text-align: center;
  padding: 20px; }
  .info-text img {
    width: 100%; }

.btn {
  background: #ff5349;
  color: #fff;
  padding: 8px 15px; }
  @media only screen and (max-width: 900px) {
    .btn {
      display: block;
      width: 90%;
      margin: auto; } }

.feature-row .inner {
  max-width: 1500px;
  box-sizing: border-box;
  margin: auto;
  background-size: auto 95%;
  background-position: right;
  background-repeat: no-repeat;
  padding: 85px 550px 85px 85px; }
  .feature-row .inner h3 {
    font-size: 2em; }

.feature-row.payment {
  background-color: #dd6f61;
  color: white; }
  .feature-row.payment .inner {
    background-image: url(/static/images/features/payment.jpg); }

.feature-row.fees {
  background-color: #72c0e2;
  color: white; }
  .feature-row.fees .inner {
    background-image: url(/static/images/features/fees.jpg); }

.feature-row.ticket {
  background-color: #279191;
  color: white; }
  .feature-row.ticket .inner {
    background-image: url(/static/images/features/ticket.jpg); }

.feature-row.network {
  background-color: #dd6f61;
  color: white; }
  .feature-row.network .inner {
    background-image: url(/static/images/features/network.png); }

.feature-row.support {
  background-color: #dd6f61;
  color: white; }
  .feature-row.support .inner {
    background-image: url(/static/images/features/support.jpg); }

.feature-row.style {
  background-color: #f6b93e;
  color: white; }
  .feature-row.style .inner {
    background-image: url(/static/images/features/style.jpg); }

.feature-row.barcode {
  background-color: #279191;
  color: white; }
  .feature-row.barcode .inner {
    background-image: url(/static/images/features/barcode.jpg); }

.feature-row.reporting {
  background-color: #f6b93e;
  color: white; }
  .feature-row.reporting .inner {
    background-image: url(/static/images/features/reporting.jpg); }

.feature-row.calendar {
  background-color: #279191;
  color: white; }
  .feature-row.calendar .inner {
    background-image: url(/static/images/features/calendar.jpg); }

.feature-row.target {
  background-color: #72c0e2;
  color: white; }
  .feature-row.target .inner {
    background-image: url(/static/images/features/targetting.png); }

.feature-row.affiliate {
  background-color: #72c0e2;
  color: white; }
  .feature-row.affiliate .inner {
    background-image: url(/static/images/features/affiliate.png); }

.feature-row:nth-child(even) .inner {
  background-position: left;
  padding: 85px 85px 85px 550px; }

@media only screen and (max-width: 900px) {
  .feature-row .inner {
    padding: 120px 20px 20px 20px !important;
    background-size: 200px;
    background-position: top !important; } }

.partners {
  clear: both;
  overflow: hidden;
  padding-bottom: 25px; }
  .partners img {
    width: 20%;
    float: left;
    margin: 2.5%; }

.support-inner {
  background: #eee;
  margin: 15px;
  padding: 20px;
  min-height: 300px; }

.contact-form {
  font-family: 'Titillium Web', sans-serif; }
  .contact-form label {
    display: block;
    padding-bottom: 10px; }
  .contact-form .form-row {
    margin-bottom: 25px; }
  .contact-form input, .contact-form textarea {
    display: block;
    width: 100%;
    font-family: sans-serif;
    font-size: 1.2em;
    padding: 15px; }

.live-chat {
  margin: 15px;
  background: #eee;
  padding: 15px 20px; }

.zd_satisfaction_score, .zd_rating_string {
  background: none !important; }

.zd_satisfaction_score {
  color: #ff5349; }

.zd_satisfaction_bad, .zd_satisfaction_good {
  display: none !important; }

footer {
  background: #333;
  padding: 60px 25px;
  text-align: center;
  color: white; }
  footer .container {
    max-width: 1200px;
    margin: auto; }
    footer .container p {
      margin: 0; }
  footer img {
    width: 90%;
    max-width: 450px; }

.title-font {
  font-family: 'Titillium Web', sans-serif; }

h1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 3em; }
  @media only screen and (max-width: 900px) {
    h1 {
      font-size: 2.2em;
      line-height: 1.1; } }

h2 {
  font-family: 'Titillium Web', sans-serif; }

h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.5em;
  margin: 10px 0; }

h4 {
  font-family: 'Titillium Web', sans-serif;
  color: #ff5349;
  font-size: 1.5em; }

p {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.3em; }

nav {
  font-family: 'Titillium Web', sans-serif; }

a {
  color: #ff5349;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer; }
  a:hover {
    cursor: pointer;
    color: #333; }

section {
  background-size: cover; }
  section.intro {
    background-image: url(/static/images/backgrounds/4.jpg);
    color: white; }
    section.intro .sign-up {
      margin-top: 80px; }
    section.intro a {
      background: #ff5349;
      color: white;
      padding: 10px; }
  section.more-features {
    background: url(/static/images/ec-screen-grabs.png) no-repeat right center;
    background-size: 30% auto;
    padding: 20px; }
    @media only screen and (max-width: 992px) {
      section.more-features {
        background: none; } }
  section.eb-alternative-top {
    background-image: url(/static/images/backgrounds/eb-alternate.png);
    color: white;
    height: auto !important;
    padding: 100px; }
    section.eb-alternative-top .sign-up {
      margin-top: 50px; }
    section.eb-alternative-top .container .inner {
      max-width: 500px; }
    section.eb-alternative-top a {
      background: #ff5349;
      color: white;
      padding: 10px; }
      @media only screen and (max-width: 900px) {
        section.eb-alternative-top a {
          display: block;
          width: 80%;
          margin: auto; } }
    @media only screen and (max-width: 768px) {
      section.eb-alternative-top {
        padding: 100px 20px 20px 20px; } }
  section.eb-alternative-bottom {
    background-image: url(/static/images/backgrounds/eb-alternate-bottom.png);
    color: white;
    height: auto !important;
    padding: 100px; }
    section.eb-alternative-bottom .sign-up {
      margin-top: 50px; }
    section.eb-alternative-bottom .container .inner {
      max-width: 500px; }
    section.eb-alternative-bottom a {
      background: #ff5349;
      color: white;
      padding: 10px; }
      @media only screen and (max-width: 900px) {
        section.eb-alternative-bottom a {
          display: block;
          width: 80%;
          margin: auto; } }
    @media only screen and (max-width: 768px) {
      section.eb-alternative-bottom {
        padding: 30px 20px; } }
  section.endframe {
    background-image: url(/static/images/backgrounds/2.jpg);
    color: white;
    height: auto !important;
    padding: 100px; }
    section.endframe .sign-up {
      margin-top: 50px; }
    section.endframe a {
      background: #ff5349;
      color: white;
      padding: 10px; }
      @media only screen and (max-width: 900px) {
        section.endframe a {
          display: block;
          width: 80%;
          margin: auto; } }
  section.grey {
    background: #eee;
    color: #333; }
  section.pink {
    background: #fff6f6;
    display: table;
    width: 100%;
    height: auto;
    padding: 50px 0 30px 0;
    background-position: top; }
    section.pink .container {
      display: table-cell;
      vertical-align: middle;
      max-width: none;
      color: black; }
      section.pink .container .inner {
        max-width: 950px;
        margin: auto; }
        section.pink .container .inner p {
          color: #ff5349; }
  section.red {
    background: #dd7061;
    background: radial-gradient(ellipse at center, #dd7061 0%, #cf7d72 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dd7061', endColorstr='#cf7d72', GradientType=1);
    display: table;
    width: 100%;
    height: auto;
    padding: 50px 0 30px 0;
    background-position: top; }
    section.red .container {
      display: table-cell;
      vertical-align: middle;
      max-width: none;
      color: white; }
      section.red .container .inner {
        max-width: 950px;
        margin: auto; }
  section .container {
    max-width: 1200px;
    padding: 20px;
    margin: auto;
    text-align: center; }
  section.full-centered {
    display: table;
    width: 100%;
    height: 100vh; }
    @media only screen and (max-width: 900px) {
      section.full-centered {
        height: auto;
        padding-top: 100px; }
        section.full-centered.endframe {
          padding: 30px 0; }
        section.full-centered.eb-alternative-bottom {
          padding-top: 30px; } }
    section.full-centered .container {
      display: table-cell;
      vertical-align: middle;
      max-width: none; }
      section.full-centered .container .inner {
        max-width: 950px;
        margin: auto; }
  section.mini-centered {
    background: #ff5349;
    background: radial-gradient(ellipse at center, #ff5349 0%, #a82822 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5349', endColorstr='#a82822', GradientType=1);
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0 50px 0;
    background-position: bottom;
    background-size: cover; }
    @media only screen and (max-width: 900px) {
      section.mini-centered {
        background: radial-gradient(ellipse at center, #ff5349 0%, #a82822 100%) !important; } }
    section.mini-centered .container {
      display: table-cell;
      vertical-align: middle;
      max-width: none;
      color: white; }
      section.mini-centered .container .inner {
        max-width: 950px;
        margin: auto; }
    section.mini-centered.photo {
      background: url(/static/images/backgrounds/4.jpg);
      background-size: cover;
      background-position: center; }
  section.photo-1 {
    background: url(/static/images/backgrounds/3.jpg); }
  section .case-study {
    text-align: left; }
    section .case-study h1 {
      text-align: center; }
    section .case-study .features-used {
      float: right;
      background: #eee;
      margin: 30px 0 50px 50px;
      padding: 10px 20px; }
      section .case-study .features-used li {
        font-family: 'Titillium Web', sans-serif;
        font-size: 1.3em; }
      @media only screen and (max-width: 900px) {
        section .case-study .features-used {
          display: none; } }

.feat-trio-wrap {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .feat-trio-wrap .feat-box {
    -ms-flex-preferred-size: calc(100%/3 - 20px);
        flex-basis: calc(100%/3 - 20px);
    background-color: #fff6f6;
    padding: 20px;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .feat-trio-wrap .feat-box .img-wrap {
      min-height: 100px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      margin-bottom: 20px; }
      .feat-trio-wrap .feat-box .img-wrap img {
        width: 100%;
        height: auto; }
    .feat-trio-wrap .feat-box h3 {
      font-size: 1.4em;
      max-width: 90%; }
    .feat-trio-wrap .feat-box p {
      font-size: 0.8em; }
  @media only screen and (max-width: 1241px) {
    .feat-trio-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch; }
      .feat-trio-wrap .feat-box {
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        height: auto;
        margin-bottom: 20px; }
        .feat-trio-wrap .feat-box .img-wrap {
          min-height: auto; } }

.compare-table {
  width: 100%;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.29);
  padding: 0 20px 20px 20px;
  overflow-x: scroll; }
  .compare-table table {
    width: 100%; }
    .compare-table table th {
      padding: 0 10px 10px 10px; }
      .compare-table table th .red-top {
        display: block;
        background-color: #FF5349;
        width: 80%;
        margin: 0 auto;
        height: 20px; }
      .compare-table table th .grey-top {
        display: block;
        background-color: grey;
        width: 80%;
        margin: 0 auto;
        height: 20px; }
    .compare-table table td {
      padding: 10px;
      border-top: 1px solid #e0e0e0; }
      .compare-table table td:nth-child(1) {
        text-align: right;
        font-size: 0.9em;
        color: black; }
      .compare-table table td:nth-child(2) {
        color: #FF5349; }
      .compare-table table td:nth-child(3), .compare-table table td:nth-child(4) {
        opacity: 0.3; }

.more-feat-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .more-feat-box .feat-grid {
    margin: 30px 0;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .more-feat-box .feat-grid .feat {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
      padding-right: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .more-feat-box .feat-grid .feat img {
        width: 70px;
        height: 70px;
        margin-right: 20px; }
      .more-feat-box .feat-grid .feat p {
        text-align: left;
        font-size: 1rem; }
  .more-feat-box h1 {
    margin: 0; }
  .more-feat-box a {
    font-size: 1.2rem; }
  @media only screen and (max-width: 992px) {
    .more-feat-box {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .more-feat-box .feat-grid {
        width: 100%; } }
  @media only screen and (max-width: 612px) {
    .more-feat-box .feat-grid .feat {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }
