a {
  text-decoration: none;
  color: #00a1aa;
  font-weight: 600; }
  a:hover {
    text-decoration: underline; }

section.content {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 30px;
  float: left;
  width: 60%;
  font-size: 16px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }
  section.content .detail {
    margin: 20px 0;
    line-height: 1.3; }
    section.content .detail:first-child {
      margin-top: 0; }
    section.content .detail .location {
      margin: 0; }
  section.content h1 {
    margin: 20px 0; }
  section.content h4,
  section.content p {
    font-size: 14px;
    color: black;
    border: none; }
  section.content h1 {
    font-size: 24px;
    margin-top: 0; }
  section.content h4 {
    margin-bottom: 0; }

section.sidebar {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 30px;
  float: left;
  width: 40%;
  font-size: 16px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }
  section.sidebar .message {
    font-size: 12px;
    display: none; }
    section.sidebar .message.show {
      display: inline-block; }
  section.sidebar *,
  section.sidebar *::after,
  section.sidebar *::before {
    box-sizing: border-box; }
  section.sidebar a {
    color: #95ac5f;
    text-decoration: none; }
  section.sidebar input {
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem; }
  section.sidebar table,
  section.sidebar fieldset,
  section.sidebar legend {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline; }
  section.sidebar ul {
    list-style: none; }
  section.sidebar .cd-pricing {
    max-width: 260px;
    padding: 0;
    margin: 0 auto;
    text-align: center; }
  section.sidebar .cd-pricing > li {
    overflow: auto;
    position: relative;
    background-color: #3a3a3c;
    color: #f4f4f4;
    border-radius: 0; }
  section.sidebar .cd-pricing > li.empty-box {
    box-shadow: none; }
  section.sidebar .cd-pricing > li.empty-box::after {
    /* placeholder visible when .cd-form is open - in this case same color of the background */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f222b; }
  section.sidebar .cd-pricing-features {
    margin: 20px; }
    section.sidebar .cd-pricing-features p {
      margin: 20px 0;
      font-size: 0.9rem;
      line-height: 1.3;
      font-weight: 600; }
      section.sidebar .cd-pricing-features p:first-child {
        margin-top: 0; }
  section.sidebar .cd-pricing-footer {
    margin: 20px; }
  section.sidebar .cd-pricing-footer a {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 85%;
    padding: 7px 5px; }
  section.sidebar .empty-box .cd-pricing-footer a {
    /* scale down to 0 the action button when sign up form is visible */
    -webkit-transform: scale(0);
    transform: scale(0); }
  section.sidebar .cd-form {
    position: fixed;
    z-index: 2;
    background-color: #ffffff;
    border-radius: .25em;
    visibility: hidden;
    transition: visibility 0s 0.8s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  section.sidebar .cd-form::before {
    /* never visible - this is used in jQuery to check the current MQ */
    display: none;
    content: 'mobile'; }
  section.sidebar .cd-form::after {
    /* gradient visible at the bottom of the form - to indicate it's possible to scroll */
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 30px;
    width: 100%;
    border-radius: 0 0 .25em .25em;
    background-color: rgba(255, 255, 255, 0);
    pointer-events: none; }
  section.sidebar .cd-form .cd-plan-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    text-align: center;
    display: none; }
  section.sidebar .cd-form .cd-plan-info > * {
    width: 100%; }
  section.sidebar .cd-form .cd-pricing-features {
    position: relative;
    transition: opacity 0.3s 0s, visibility 0s 0s; }
  section.sidebar .cd-form .cd-pricing-features::before {
    /* this is the layer which covers the .cd-pricing-features when the form is open - visible only on desktop */
    content: '';
    position: absolute;
    /* fix a bug while animating - 1px white space visible */
    top: -5px;
    left: 0;
    height: calc(100% + 5px);
    width: 100%;
    background-color: #95ac5f;
    will-change: transform;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    transition: -webkit-transform 0.6s 0.2s;
    transition: transform 0.6s 0.2s;
    transition: transform 0.6s 0.2s, -webkit-transform 0.6s 0.2s; }
  section.sidebar .cd-form .cd-pricing-footer {
    display: none; }
  section.sidebar .cd-form form {
    height: 100%;
    overflow: hidden; }
  section.sidebar .cd-form form.is-scrollable {
    overflow-y: auto; }
  section.sidebar .cd-form fieldset {
    opacity: 0;
    margin: 1.8rem 1.9rem 0 1.9rem;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s; }
  section.sidebar .cd-form fieldset > div,
  section.sidebar .cd-form fieldset .cd-credit-card > div {
    padding-top: 1.2em; }
  section.sidebar .cd-form fieldset div::after {
    clear: both;
    content: "";
    display: table; }
  section.sidebar .cd-form fieldset:last-of-type > div {
    padding-top: 0; }
  section.sidebar .cd-form fieldset.submitfieldset {
    margin-top: 0px;
    margin-bottom: 0px; }
  section.sidebar .cd-form legend {
    width: 100%;
    font-size: 1.17rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: #00a1aa;
    margin: 1rem 0;
    text-align: center; }
  section.sidebar .cd-form input[type="text"],
  section.sidebar .cd-form input[type="email"],
  section.sidebar .cd-form input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    box-sizing: border-box;
    height: 30px;
    border: 1px solid #00a1aa;
    border-radius: 0;
    background: transparent;
    color: #3a3a3c;
    font-weight: 100;
    font-size: .8rem;
    margin-bottom: 13px;
    width: 48%; }
    section.sidebar .cd-form input[type="text"]::-webkit-input-placeholder,
    section.sidebar .cd-form input[type="email"]::-webkit-input-placeholder,
    section.sidebar .cd-form input[type="password"]::-webkit-input-placeholder {
      color: #3a3a3c; }
    section.sidebar .cd-form input[type="text"]:-moz-placeholder,
    section.sidebar .cd-form input[type="email"]:-moz-placeholder,
    section.sidebar .cd-form input[type="password"]:-moz-placeholder {
      color: #3a3a3c; }
    section.sidebar .cd-form input[type="text"]::-moz-placeholder,
    section.sidebar .cd-form input[type="email"]::-moz-placeholder,
    section.sidebar .cd-form input[type="password"]::-moz-placeholder {
      color: #3a3a3c; }
    section.sidebar .cd-form input[type="text"]:-ms-input-placeholder,
    section.sidebar .cd-form input[type="email"]:-ms-input-placeholder,
    section.sidebar .cd-form input[type="password"]:-ms-input-placeholder {
      color: #3a3a3c; }
    section.sidebar .cd-form input[type="text"].error,
    section.sidebar .cd-form input[type="email"].error,
    section.sidebar .cd-form input[type="password"].error {
      border: 1px solid red; }
      section.sidebar .cd-form input[type="text"].error::-webkit-input-placeholder,
      section.sidebar .cd-form input[type="email"].error::-webkit-input-placeholder,
      section.sidebar .cd-form input[type="password"].error::-webkit-input-placeholder {
        color: red; }
      section.sidebar .cd-form input[type="text"].error:-moz-placeholder,
      section.sidebar .cd-form input[type="email"].error:-moz-placeholder,
      section.sidebar .cd-form input[type="password"].error:-moz-placeholder {
        color: red; }
      section.sidebar .cd-form input[type="text"].error::-moz-placeholder,
      section.sidebar .cd-form input[type="email"].error::-moz-placeholder,
      section.sidebar .cd-form input[type="password"].error::-moz-placeholder {
        color: red; }
      section.sidebar .cd-form input[type="text"].error:-ms-input-placeholder,
      section.sidebar .cd-form input[type="email"].error:-ms-input-placeholder,
      section.sidebar .cd-form input[type="password"].error:-ms-input-placeholder {
        color: red; }
  section.sidebar .cd-form input[type="email"],
  section.sidebar .cd-form input[name="5769458"] {
    width: 99%; }
  section.sidebar .cd-form input[name="4711333"],
  section.sidebar .cd-form input[name="5769448"],
  section.sidebar .cd-form input[name="5769468"],
  section.sidebar .cd-form input[name="5769588"] {
    margin-right: 1%; }
  section.sidebar .cd-form input[name="4711338"],
  section.sidebar .cd-form input[name="5769453"],
  section.sidebar .cd-form input[name="5769513"],
  section.sidebar .cd-form input[name="5769593"] {
    margin-left: 1%; }
  section.sidebar .cd-form input[type="text"]:focus,
  section.sidebar .cd-form input[type="email"]:focus,
  section.sidebar .cd-form input[type="password"]:focus {
    outline: none; }
  section.sidebar .cd-form input[type="text"],
  section.sidebar .cd-form input[type="email"],
  section.sidebar .cd-form input[type="password"] {
    display: inline-block;
    padding: 0 16px; }
  section.sidebar .cd-form .cd-close {
    /* 'X' close icon */
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background: url(img/cd-icon-close.svg) no-repeat center center;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent; }
  section.sidebar .cd-form.is-visible {
    /* form is visible */
    visibility: visible;
    transition: visibility 0s 0s; }
  section.sidebar .cd-form.is-visible .cd-pricing-features {
    /* desktop only */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s 0s, visibility 0s 0.8s; }
  section.sidebar .cd-form.is-visible form {
    -webkit-overflow-scrolling: touch; }
  section.sidebar .cd-form.is-visible fieldset {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: opacity 0.3s 0.6s, -webkit-transform 0.3s 0.6s;
    transition: transform 0.3s 0.6s, opacity 0.3s 0.6s;
    transition: transform 0.3s 0.6s, opacity 0.3s 0.6s, -webkit-transform 0.3s 0.6s; }
  section.sidebar .cd-form.is-visible fieldset:nth-of-type(2) {
    /* delay second fieldset animation */
    transition: opacity 0.3s 0.7s, -webkit-transform 0.3s 0.7s;
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s, -webkit-transform 0.3s 0.7s; }
  section.sidebar .cd-form.is-visible fieldset:nth-of-type(3) {
    /* delay second fieldset animation */
    transition: opacity 0.3s 0.8s, -webkit-transform 0.3s 0.8s;
    transition: transform 0.3s 0.8s, opacity 0.3s 0.8s;
    transition: transform 0.3s 0.8s, opacity 0.3s 0.8s, -webkit-transform 0.3s 0.8s; }
  section.sidebar .cd-form.is-visible .cd-close {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: -webkit-transform 0.3s 0.8s;
    transition: transform 0.3s 0.8s;
    transition: transform 0.3s 0.8s, -webkit-transform 0.3s 0.8s; }
  @media only screen and (min-width: 768px) {
    section.sidebar .cd-form::before {
      /* never visible - this is used in jQuery to check the current MQ */
      content: 'desktop'; }
    section.sidebar .cd-form .cd-pricing-features {
      transition: padding 0.3s 0.2s; }
    section.sidebar .cd-form form {
      padding: 0;
      background-color: #f4f4f4; }
    section.sidebar .cd-form .half-width {
      width: 48%;
      float: left;
      margin-right: 4%; }
    section.sidebar .cd-form .half-width:nth-of-type(2n) {
      margin-right: 0; }
    section.sidebar .cd-form .full-width {
      width: 96%;
      float: left;
      margin-right: 4%; }
    section.sidebar .cd-form input[type="submit"] {
      float: right; }
    section.sidebar .cd-form .cd-close {
      /* move close icon outside the form container */
      top: -40px;
      right: -5px; } }
  section.sidebar .cd-pricing-footer a, section.sidebar .cd-form input[type="submit"] {
    display: inline-block;
    border-radius: 0;
    text-transform: capitalize;
    font-size: 0.8rem;
    font-weight: bold;
    height: 30px; }
  section.sidebar .cd-pricing-footer a {
    color: #f4f4f4;
    background-color: #00a1aa; }
  section.sidebar .cd-form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #00a1aa;
    color: #ffffff;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 13px; }
  section.sidebar .cd-overlay {
    /* shadow layer visible when navigation is open */
    position: fixed;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 34, 43, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s 0.2s, visibility 0s 0.8s; }
  section.sidebar .cd-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s 0s, visibility 0s 0s; }
  section.sidebar .requiredmessage {
    color: #3a3a3c;
    font-size: 12px;
    line-height: 16px; }
