@charset "UTF-8";
a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

.cards {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.card {
  color: #888888;
  border-radius: 10px;
  box-sizing: border-box;
  display: inline-block;
  padding: 48px; }
  .card .link, .card .content {
    box-shadow: rgba(194, 194, 194, 0.4) 4px 4px 12px 2px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden; }
  .card .title {
    border-radius: 11px 11px 0 0;
    font-size: 1.7em;
    margin: 0;
    text-align: center;
    text-transform: uppercase; }
  .card.transparent .link, .card.transparent .content {
    background-color: transparent;
    box-shadow: none; }
  .card.transparent .title {
    background-color: transparent; }

.highlight {
  background-color: #fff;
  color: #2f2f2f;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  padding: 0 16px;
  vertical-align: middle; }

.toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative; }
  .toolbar .title {
    color: #888888;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    font-family: "Open Sans Condensed";
    font-size: 1.4em;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40; }
  .toolbar *:not(.title) {
    z-index: 50; }

.vue-tooltip {
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
    color-font-size: .8em;
  max-width: 320px;
  padding: 6px 10px;
  border-radius: 3px;
  z-index: 100;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4); }
  .vue-tooltip .vue-tooltip-content {
    text-align: center; }
  .vue-tooltip .tooltip-arrow {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    margin: 5px; }

.vue-tooltip[x-placement^="top"] {
  margin-bottom: 5px; }
  .vue-tooltip[x-placement^="top"] .tooltip-arrow {
    border-width: 5px 5px 0 5px;
    border-top-color: #000;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    bottom: -5px;
    margin-top: 0;
    margin-bottom: 0; }

.vue-tooltip[x-placement^="bottom"] {
  margin-top: 5px; }
  .vue-tooltip[x-placement^="bottom"] .tooltip-arrow {
    border-width: 0 5px 5px 5px;
    border-bottom-color: #000;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    top: -5px;
    margin-top: 0;
    margin-bottom: 0; }

.vue-tooltip[x-placement^="right"] {
  margin-left: 5px; }
  .vue-tooltip[x-placement^="right"] .tooltip-arrow {
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-bottom-color: transparent !important;
    left: -5px;
    margin-left: 0;
    margin-right: 0; }

.vue-tooltip[x-placement^="left"] {
  margin-right: 5px; }
  .vue-tooltip[x-placement^="left"] .tooltip-arrow {
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    right: -5px;
    margin-left: 0;
    margin-right: 0; }

.radio {
  box-sizing: border-box;
  height: 34px;
  line-height: 32px;
  padding: 8px;
  text-align: center;
  position: relative; }
  .radio input[type="radio"] {
    appearance: none;
    cursor: pointer;
    height: 100%;
    width: 100%;
    margin: 0;
    outline: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90; }
    .radio input[type="radio"]:checked ~ label {
      background-color: #00a6d5;
      color: #fff; }
    .radio input[type="radio"][disabled] {
      cursor: default; }
      .radio input[type="radio"][disabled] ~ label {
        background-color: #d4d4d4;
        border-color: transparent;
        color: #fff;
        cursor: default; }
  .radio label {
    border: solid 1px #00a6d5;
    border-radius: 32px;
    box-sizing: border-box;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center; }

.toggle {
  color: #aeaeae;
  border: solid 1px #00a6d5;
  border-radius: 3px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Open Sans";
  font-size: .9em;
  font-weight: normal;
  line-height: 24px;
  margin: 8px; }
  .toggle .option {
    position: relative;
    text-align: center; }
    .toggle .option:not(:last-of-type) {
      border-right: solid 1px #00a6d5; }
  .toggle input[type="radio"] {
    appearance: none;
    cursor: pointer;
    height: 100%;
    width: 100%;
    margin: 0;
    outline: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0; }
    .toggle input[type="radio"]:checked ~ label {
      background-color: #00a6d5;
      color: #fff; }
  .toggle label {
    display: block;
    padding: 0 16px; }

a.home, a.prepaid, .toolbar a.back {
  box-shadow: rgba(194, 194, 194, 0.4) 4px 4px 12px 2px;
  background-color: #fff;
  border-radius: 16px;
  color: #aeaeae;
  display: inline-block;
  font-weight: bold;
  margin: 16px 0;
  padding: 4px 16px;
  text-decoration: none;
  text-transform: uppercase; }
  a.home::before, a.prepaid::before, .toolbar a.back::before {
    content: '\00a0\00a0';
    font-family: "FontAwesome";
    font-size: 1.1em;
    font-weight: normal; }

.toolbar a.back::before {
  content: '\00a0\00a0'; }

a.prepaid {
  padding: 4px 32px; }
  a.prepaid::before {
    content: '\00a0\00a0'; }

.button, select, input[type="text"], input[type="password"], input[type="tel"], input[type="email"], input[type="file"] + label, input[type="submit"] {
  appearance: none;
  background-color: #eeeeee;
  color: #2f2f2f;
  border: none;
  border-radius: 40px;
  box-sizing: border-box;
  display: inline-block;
  height: 40px;
  line-height: 20px;
  min-width: 144px;
  font-family: "Open Sans";
  font-size: .9em;
  margin: 10px;
  padding: 10px 20px;
  outline: none;
  overflow: hidden;
  position: relative;
  text-decoration: none; }

select {
  background: #fff url("https://cdn.dixisoft.com/img/icons/select.svg?fill=rgba(194, 194, 194, 0.7)") 98% center no-repeat;
  background-size: auto 60%;
  border: solid 1px rgba(194, 194, 194, 0.7);
  cursor: pointer; }

.button, input[type="submit"], input[type="file"] + label {
  background-color: #888888;
  color: #fff;
  cursor: pointer;
  font-size: 1.2em;
  line-height: 30px;
  padding: 5px 20px;
  text-align: center;
  touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .button[data-icon]::before, input[type="submit"][data-icon]::before, input[type="file"] + label[data-icon]::before {
    content: attr(data-icon) " ";
    display: inline-block;
    font-family: "FontAwesome";
    font-weight: normal;
    text-align: center; }

.button.validate, input[type="submit"] {
  background-color: #00a6d5; }
  .button.validate:not([data-icon])::after, input[type="submit"]:not([data-icon])::after {
    content: '';
    display: -ms-flexbox;
    display: flex;
    font-family: "FontAwesome";
    font-size: 1.3em;
    -ms-flex-align: center;
        align-items: center;
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    text-align: center; }

input[type="file"] {
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.monogram {
  border-radius: 48px;
  color: #fff;
  line-height: 48px;
  margin: 16px;
  text-align: center;
  width: 48px; }

.gauge {
  background-color: #c2c2c2;
  border-radius: 16px;
  margin: 8px 0; }
  .gauge .bar {
    background-color: #00a6d5;
    border-radius: 16px;
    height: 100%; }

body {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400; }
  body > .page {
    background-blend-mode: soft-light;
    background-color: rgba(230, 230, 230, 0.5);
    background-image: url("/img/pattern.png"), linear-gradient(to right, #e6e6e6, #fafafa 50%, #e6e6e6);
    background-repeat: repeat, no-repeat;
    background-position: top left, top center;
    box-sizing: border-box;
    min-height: 100%;
    padding: 112px 0 32px 0;
    position: relative; }
    @media screen and (max-width: 768px) {
      body > .page {
        padding: 0 0 32px 0;
        -ms-flex-direction: column;
            flex-direction: column; } }

.wrapper {
  max-width: 1152px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 32px; }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

.slider {
  box-shadow: rgba(47, 47, 47, 0.7) 4px 4px 12px 2px;
  height: 100%;
  min-width: 320px;
  max-width: 480px;
  width: 33.33333%;
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  -ms-transform: translate(0);
      transform: translate(0);
  transition: ease-in-out 500ms;
  transition-property: opacity, transform;
  z-index: 90; }
  .slider.animated .cell {
    transition: ease-in-out 500ms;
    transition-property: box-shadow, transform; }
  .slider .toolbar {
    height: 80px;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 95; }
    .slider .toolbar .close {
      border: solid 2px transparent;
      border-radius: 48px;
      box-sizing: border-box;
      color: #00a6d5;
      cursor: pointer;
      display: block;
      font-size: 3em;
      font-weight: 300;
      height: 48px;
      min-width: 48px;
      line-height: 8px;
      margin: 8px;
      padding: 8px;
      text-align: center;
      -ms-transform: translateX(-8px) translateY(-8px);
          transform: translateX(-8px) translateY(-8px); }
  .slider .content {
    color: #888888;
    width: 100%; }
  .slider .row {
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
    left: 0;
    -ms-transform: translateY(-100%);
        transform: translateY(-100%); }
    .slider .row[data-current] {
      -ms-transform: translateY(0);
          transform: translateY(0); }
    .slider .row[data-current] ~ .row {
      -ms-transform: translateY(100%);
          transform: translateY(100%); }
  .slider .cell {
    background-blend-mode: soft-light;
    background-color: rgba(230, 230, 230, 0.5);
    background-image: url("/img/pattern.png"), linear-gradient(to right, #e6e6e6, #fafafa 50%, #e6e6e6);
    background-repeat: repeat, no-repeat;
    background-position: top left, top center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
    .slider .cell > .header, .slider .cell > .cart > .header {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      padding: 16px; }
      .slider .cell > .header .avatar, .slider .cell > .cart > .header .avatar {
        background: rgba(230, 230, 230, 0.6) url("/img/drop.svg") center center no-repeat;
        background-size: 60%;
        border-radius: 176px;
        height: 176px;
        width: 176px;
        margin: 16px 0; }
    .slider .cell .details {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      width: 100%; }
    .slider .cell .greetings {
      font-size: 1.7em; }
      .slider .cell .greetings .name {
        color: #00a6d5; }
    .slider .cell .progress {
      box-sizing: border-box;
      width: 100%;
      margin-top: 16px;
      padding: 0 32px;
      padding-bottom: 16px; }
      .slider .cell .progress .gauge {
        height: 16px; }
    .slider .cell .labels {
      color: #aeaeae;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
          justify-content: space-between; }
    .slider .cell > .title, .slider .cell > .cart > .title {
      color: #00a6d5; }
    .slider .cell .content {
      -ms-flex: 1 1;
          flex: 1 1; }
    .slider .cell[data-secondary] {
      box-shadow: transparent 4px 4px 12px 2px;
      -ms-transform: translateX(100%);
          transform: translateX(100%); }
      .slider .cell[data-secondary] .header {
        -ms-flex-direction: row;
            flex-direction: row; }
        .slider .cell[data-secondary] .header .avatar {
          -ms-flex: 0 0 112px;
              flex: 0 0 112px;
          height: 112px;
          width: 112px;
          margin: 16px; }
        .slider .cell[data-secondary] .header .greetings {
          font-size: 1.2em; }
        .slider .cell[data-secondary] .header .progress {
          margin-top: 0;
          padding: 0 16px; }
        .slider .cell[data-secondary] .header .labels {
          font-size: .9em; }
      .slider .cell[data-secondary] .nav {
        color: #fff;
        display: -ms-flexbox;
        display: flex;
        height: 48px;
        line-height: 48px; }
        .slider .cell[data-secondary] .nav .back {
          background-color: #888888;
          background-clip: padding-box;
          border-right: solid 2px transparent;
          cursor: pointer;
          width: 48px;
          text-align: center; }
          .slider .cell[data-secondary] .nav .back::before {
            content: '';
            font-family: "FontAwesome";
            font-size: 2em;
            font-weight: normal; }
        .slider .cell[data-secondary] .nav .title {
          background-color: #00a6d5;
          color: inherit;
          -ms-flex: 1 1;
              flex: 1 1;
          line-height: inherit;
          margin: 0;
          padding-left: 16px;
          text-align: left; }
          .slider .cell[data-secondary] .nav .title .icon {
            font-family: "FontAwesome"; }
            .slider .cell[data-secondary] .nav .title .icon::before {
              content: attr(data-icon) " "; }
          .slider .cell[data-secondary] .nav .title .small {
            font-size: .7em; }
      .slider .cell[data-secondary][data-current] {
        box-shadow: #2f2f2f 4px 4px 12px 2px; }
    .slider .cell .actions {
      box-sizing: border-box;
      padding: 0 16px; }
    .slider .cell .actions .button, .slider .cell input[type="submit"] {
      display: block;
      font-weight: bold; }
    .slider .cell[data-current] {
      -ms-transform: translateX(0);
          transform: translateX(0); }
    .slider .cell > .footer, .slider .cell > .cart > .footer {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: justify;
          justify-content: space-between; }
      .slider .cell > .footer .settings, .slider .cell > .cart > .footer .settings {
        padding: 16px 32px; }
        .slider .cell > .footer .settings .title, .slider .cell > .footer .settings .data, .slider .cell > .cart > .footer .settings .title, .slider .cell > .cart > .footer .settings .data {
          color: #00a6d5;
          font-weight: bold; }
        .slider .cell > .footer .settings .title::before, .slider .cell > .footer .settings label::before, .slider .cell > .cart > .footer .settings .title::before, .slider .cell > .cart > .footer .settings label::before {
          font-family: "FontAwesome"; }
        .slider .cell > .footer .settings .title, .slider .cell > .footer .settings .provider, .slider .cell > .footer .settings .cabin, .slider .cell > .footer .settings .prestation, .slider .cell > .cart > .footer .settings .title, .slider .cell > .cart > .footer .settings .provider, .slider .cell > .cart > .footer .settings .cabin, .slider .cell > .cart > .footer .settings .prestation {
          margin: 8px 0; }
        .slider .cell > .footer .settings .title, .slider .cell > .cart > .footer .settings .title {
          text-transform: uppercase; }
          .slider .cell > .footer .settings .title::before, .slider .cell > .cart > .footer .settings .title::before {
            content: '\00a0'; }
        .slider .cell > .footer .settings label::before, .slider .cell > .cart > .footer .settings label::before {
          content: '\00a0'; }
      .slider .cell > .footer .social, .slider .cell > .cart > .footer .social {
        display: none;
        font-size: .9em;
        margin-bottom: 16px; }
        .slider .cell > .footer .social .caption, .slider .cell > .cart > .footer .social .caption {
          line-height: 16px;
          text-align: center; }
        .slider .cell > .footer .social .links, .slider .cell > .cart > .footer .social .links {
          height: 48px;
          text-align: center; }
          .slider .cell > .footer .social .links a, .slider .cell > .cart > .footer .social .links a {
            background: center center no-repeat;
            background-size: contain;
            cursor: pointer;
            display: inline-block;
            height: 32px;
            width: 32px;
            margin: 8px; }
            .slider .cell > .footer .social .links a.facebook, .slider .cell > .cart > .footer .social .links a.facebook {
              background-image: url("https://cdn.dixisoft.com/img/icons/fb.svg"); }
            .slider .cell > .footer .social .links a.twitter, .slider .cell > .cart > .footer .social .links a.twitter {
              background-image: url("https://cdn.dixisoft.com/img/icons/twitter.svg"); }
            .slider .cell > .footer .social .links a.website, .slider .cell > .cart > .footer .social .links a.website {
              background-image: url("https://cdn.dixisoft.com/img/icons/web.svg"); }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

.cell {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  .cell > .cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto; }
    .cell > .cart > .header {
      display: flex-inline;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center; }
      .cell > .cart > .header .recap {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-align: center;
            align-items: center;
        margin: 16px 0;
        padding-left: 56px;
        position: relative; }
        .cell > .cart > .header .recap::before {
          content: '\00a0';
          color: #00a6d5;
          font-family: "FontAwesome";
          font-size: 3em;
          line-height: 40px;
          position: absolute;
          top: .05em;
          left: 0; }
        .cell > .cart > .header .recap .title {
          text-transform: uppercase; }
        .cell > .cart > .header .recap .cares {
          color: #00a6d5;
          font-size: 1.2em;
          font-weight: bold; }
    @media screen and (max-width: 425px) {
      .cell > .cart .actions .cart-action-button-title-hidden {
        display: none; } }
    .cell > .cart .care .quantityWrapper {
      -ms-flex: 1 0 0px;
          flex: 1 0 0; }
    .cell > .cart .care .down {
      text-align: center; }
      .cell > .cart .care .down::before {
        content: '';
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-family: "FontAwesome";
        font-size: 1.3rem; }
    .cell > .cart .care .up {
      text-align: center; }
      .cell > .cart .care .up::before {
        content: '';
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-family: "FontAwesome";
        font-size: 1.3rem; }
    .cell > .cart .detail {
      box-sizing: border-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex: 1;
          flex: 1;
      width: 100%;
      padding: 0 24px; }
      .cell > .cart .detail .cart {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex: 1;
            flex: 1;
        font-size: .9em;
        width: 100%;
        position: relative; }
        .cell > .cart .detail .cart .name {
          padding-left: 8px; }
        .cell > .cart .detail .cart .delete, .cell > .cart .detail .cart .footer .amount {
          padding-right: 8px; }
        .cell > .cart .detail .cart .quantity, .cell > .cart .detail .cart .amount {
          text-align: center; }
        .cell > .cart .detail .cart .quantity {
          -ms-flex-preferred-size: 80px;
              flex-basis: 80px; }
        .cell > .cart .detail .cart .duration {
          font-size: .8rem; }
        .cell > .cart .detail .cart .amount {
          -ms-flex-preferred-size: 64px;
              flex-basis: 64px; }
      .cell > .cart .detail .header, .cell > .cart .detail .cares > .care, .cell > .cart .detail .footer {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: baseline;
            align-items: baseline;
        -ms-flex-pack: justify;
            justify-content: space-between;
        padding-top: 4px;
        padding-bottom: 4px; }
        .cell > .cart .detail .header .name, .cell > .cart .detail .cares > .care .name, .cell > .cart .detail .footer .name {
          -ms-flex: 3;
              flex: 3; }
        .cell > .cart .detail .header .duration, .cell > .cart .detail .cares > .care .duration, .cell > .cart .detail .footer .duration {
          -ms-flex: 1 0 0px;
              flex: 1 0 0; }
        .cell > .cart .detail .header .quantity, .cell > .cart .detail .cares > .care .quantity, .cell > .cart .detail .footer .quantity {
          -ms-flex: 1 0 0px;
              flex: 1 0 0; }
        .cell > .cart .detail .header .amount, .cell > .cart .detail .cares > .care .amount, .cell > .cart .detail .footer .amount {
          -ms-flex: 1 0 0px;
              flex: 1 0 0; }
        .cell > .cart .detail .header .delete, .cell > .cart .detail .cares > .care .delete, .cell > .cart .detail .footer .delete {
          width: 16px; }
      .cell > .cart .detail .footer .name {
        -ms-flex: 1;
            flex: 1; }
      .cell > .cart .detail .header {
        background-color: #00a6d5;
        color: #fff;
        font-weight: bold;
        line-height: 24px;
        text-align: left;
        text-transform: uppercase; }
        .cell > .cart .detail .header .delete {
          font-family: "FontAwesome";
          font-weight: normal; }
      .cell > .cart .detail .cares {
        background-color: #fff;
        -ms-flex: 1;
            flex: 1;
        overflow: auto;
        margin-bottom: 27px; }
        .cell > .cart .detail .cares > .care {
          -ms-flex-align: center;
              align-items: center;
          padding: 8px 4px;
          position: relative; }
          .cell > .cart .detail .cares > .care.hidden {
            display: none; }
          .cell > .cart .detail .cares > .care::after {
            background: linear-gradient(to top, #dcdcdc 0, #dcdcdc 1px, transparent 1px) center center no-repeat;
            background-size: 90% 100%;
            content: '';
            height: 1px;
            position: absolute;
            left: 0;
            bottom: 0;
            right: 0; }
          .cell > .cart .detail .cares > .care .name {
            line-height: 1rem; }
            .cell > .cart .detail .cares > .care .name .category {
              text-transform: uppercase; }
          .cell > .cart .detail .cares > .care .name .category, .cell > .cart .detail .cares > .care .quantity, .cell > .cart .detail .cares > .care .amount {
            color: #00a6d5;
            font-weight: bold; }
          .cell > .cart .detail .cares > .care .delete {
            cursor: pointer;
            font-family: "FontAwesome";
            font-weight: normal; }
          .cell > .cart .detail .cares > .care .loader {
            background: url("/img/loader.svg") center center no-repeat;
            background-size: contain;
            height: 19.2px;
            width: 19.2px; }
      .cell > .cart .detail .footer {
        background-color: #dcdcdc;
        color: #747474;
        font-weight: bold;
        width: 100%;
        position: absolute;
        bottom: 0; }
        .cell > .cart .detail .footer .name {
          text-transform: uppercase; }
        .cell > .cart .detail .footer .amount {
          color: #00a6d5;
          text-align: center; }
    .cell > .cart .actions {
      margin-top: 24px;
      margin-bottom: 16px; }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

ul.nav {
  margin-bottom: 16px; }
  ul.nav li {
    font-size: 1.2em;
    font-weight: 300;
    height: 48px;
    line-height: 46px; }
    ul.nav li:last-of-type a {
      border-bottom: solid 1px rgba(194, 194, 194, 0.5); }
    ul.nav li a {
      box-sizing: border-box;
      border-top: solid 1px rgba(194, 194, 194, 0.5);
      cursor: pointer;
      display: block;
      height: 100%;
      padding: 0 32px;
      position: relative;
      vertical-align: baseline; }
      ul.nav li a .small {
        font-size: .5em;
        font-weight: normal;
        vertical-align: baseline; }
      ul.nav li a::before {
        content: attr(data-icon) " ";
        display: inline-block;
        font-family: "FontAwesome";
        min-width: 32px;
        text-align: center; }
      ul.nav li a::after {
        content: '';
        font-family: "FontAwesome";
        font-size: 1.3em;
        position: absolute;
        top: 0;
        right: 32px;
        bottom: 0;
        text-align: center; }
      ul.nav li a:hover {
        background-color: #00a6d5;
        color: #fff; }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

h3.soon {
  font-weight: normal;
  text-align: center; }

ul.appointments {
  padding: 24px 0; }
  ul.appointments li.appointment {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding: 24px 32px;
    position: relative; }
    ul.appointments li.appointment + .appointment {
      margin-top: 24px; }
      ul.appointments li.appointment + .appointment::before {
        background-color: #2f2f2f;
        color: #fff;
        border-radius: 48px;
        content: '&';
        font-size: 2em;
        font-weight: 300;
        height: 48px;
        width: 48px;
        line-height: 45px;
        margin: -12px auto;
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        text-align: center; }
    ul.appointments li.appointment .detail {
      font-size: 1.1em; }
    ul.appointments li.appointment .category, ul.appointments li.appointment .care, ul.appointments li.appointment .provider, ul.appointments li.appointment .cabin, ul.appointments li.appointment .date, ul.appointments li.appointment .time {
      font-weight: bold; }
    ul.appointments li.appointment .category {
      text-transform: uppercase; }
    ul.appointments li.appointment .category, ul.appointments li.appointment .care {
      font-size: 1.2em; }
    ul.appointments li.appointment .datetime {
      text-align: right; }
    ul.appointments li.appointment .date {
      font-size: .9em;
      line-height: 24px; }
    ul.appointments li.appointment .time {
      font-family: "Open Sans Condensed";
      font-size: 2em;
      font-weight: 300;
      line-height: 24px; }
    ul.appointments li.appointment.blue .category, ul.appointments li.appointment.blue .care, ul.appointments li.appointment.blue .provider, ul.appointments li.appointment.blue .cabin, ul.appointments li.appointment.blue .date, ul.appointments li.appointment.blue .time {
      color: #00a6d5; }
    ul.appointments li.appointment.red .category, ul.appointments li.appointment.red .care, ul.appointments li.appointment.red .provider, ul.appointments li.appointment.red .cabin, ul.appointments li.appointment.red .date, ul.appointments li.appointment.red .time {
      color: #ff0054; }
    ul.appointments li.appointment.green .category, ul.appointments li.appointment.green .care, ul.appointments li.appointment.green .provider, ul.appointments li.appointment.green .cabin, ul.appointments li.appointment.green .date, ul.appointments li.appointment.green .time {
      color: #38ecd0; }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

ul.giftcards {
  padding: 24px 0;
  margin-bottom: 24px; }
  ul.giftcards li a.giftcard {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4em;
    -ms-flex-align: center;
        align-items: center;
    min-height: 48px;
    padding: 24px 32px;
    padding-left: 144px;
    position: relative; }
    ul.giftcards li a.giftcard.blue {
      color: #00a6d5; }
    ul.giftcards li a.giftcard.green {
      color: #38ecd0; }
    ul.giftcards li a.giftcard.red {
      color: #ff0054; }
    ul.giftcards li a.giftcard::before {
      content: '';
      display: -ms-flexbox;
      display: flex;
      font-family: "FontAwesome";
      font-size: 3.5em;
      -ms-flex-align: center;
          align-items: center;
      height: 100%;
      position: absolute;
      top: 0;
      left: 32px; }
    ul.giftcards li a.giftcard::after {
      color: rgba(194, 194, 194, 0.2);
      content: '';
      display: -ms-flexbox;
      display: flex;
      font-family: "FontAwesome";
      font-size: 3.5em;
      -ms-flex-align: center;
          align-items: center;
      height: 100%;
      position: absolute;
      top: 0;
      right: 32px; }
    ul.giftcards li a.giftcard.care {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: start;
          align-items: flex-start;
      font-weight: bold; }
      ul.giftcards li a.giftcard.care .category {
        text-transform: uppercase; }
    ul.giftcards li a.giftcard.amount {
      font-weight: bold; }
      ul.giftcards li a.giftcard.amount .data {
        font-size: 2em; }
    ul.giftcards li a.giftcard .gifted {
      font-size: .63em;
      line-height: 24px;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      text-align: center; }
      ul.giftcards li a.giftcard .gifted label {
        color: #aeaeae; }
      ul.giftcards li a.giftcard .gifted::after {
        content: attr(data-by); }
  ul.giftcards li + li a.giftcard {
    margin-top: 36px; }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

form.information {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 16px 0;
  padding: 0 32px 0 16px; }
  form.information .avatar, form.information .name, form.information .phone, form.information .email {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    form.information .avatar input, form.information .avatar input[type="file"] + label, form.information .name input, form.information .name input[type="file"] + label, form.information .phone input, form.information .phone input[type="file"] + label, form.information .email input, form.information .email input[type="file"] + label {
      -ms-flex: 1;
          flex: 1; }
    form.information .avatar input[type="file"] + label, form.information .name input[type="file"] + label, form.information .phone input[type="file"] + label, form.information .email input[type="file"] + label {
      font-weight: bold;
      text-align: center; }
    form.information .avatar label, form.information .name label, form.information .phone label, form.information .email label {
      min-width: 96px;
      text-align: right; }
  form.information .name input, form.information .phone input, form.information .email input {
    background-color: #fff;
    border: solid 1px rgba(194, 194, 194, 0.7);
    box-shadow: rgba(136, 136, 136, 0.3) 0 0 4px 1px inset; }
  form.information input[type="submit"] {
    margin-top: 32px;
    margin-left: 16px; }

a {
  color: inherit; }

body {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased; }

html {
  height: 100%; }

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

form.settings {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 16px 0;
  padding: 0 32px; }
  form.settings .title {
    font-size: 1.3em;
    margin: 16px 0;
    text-transform: uppercase; }
    form.settings .title::before {
      content: '\00a0';
      font-family: "FontAwesome"; }
  form.settings label::before {
    content: '\00a0';
    font-family: "FontAwesome"; }
  form.settings .provider, form.settings .cabin, form.settings .care {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    form.settings .provider select, form.settings .cabin select, form.settings .care select {
      -ms-flex: 1;
          flex: 1; }
  form.settings input[type="submit"] {
    margin: 16px 0; }

body > .overlay {
  background-color: rgba(47, 47, 47, 0.8);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 89; }

body > .page {
  -ms-transform: translateX(-33.33333%);
      transform: translateX(-33.33333%);
  transition: transform ease-in-out 500ms; }
  @media screen and (max-width: 960px) {
    body > .page {
      -ms-transform: translateX(-320px);
          transform: translateX(-320px); } }
  @media screen and (min-width: 1440px) {
    body > .page {
      -ms-transform: translateX(-480px);
          transform: translateX(-480px); } }

.slider.hidden {
  opacity: 0;
  -ms-transform: translate(100%);
      transform: translate(100%); }

.slider.hidden ~ .overlay {
  display: none; }

.slider.hidden ~ .page {
  -ms-transform: translateX(0);
      transform: translateX(0); }

.page > .header {
  background-color: #2f2f2f;
  color: #c2c2c2;
  font-weight: bold;
  height: 112px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute; }
  @media screen and (max-width: 768px) {
    .page > .header {
      height: auto;
      position: static; } }
  @media screen and (max-width: 480px) {
    .page > .header {
      box-shadow: 0 2px 2px #e6e6e6; } }

.nav .wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative; }

.nav .upper {
  height: 80px;
  line-height: 80px; }

.nav .lower {
  background-color: #fff;
  color: #888888;
  height: 32px;
  line-height: 32px; }
  @media screen and (max-width: 768px) {
    .nav .lower {
      height: auto;
      line-height: 1.2;
      padding: 5px 0; } }

.nav .left, .nav .center, .nav .right {
  height: 100%; }
  .nav .left ul, .nav .center ul, .nav .right ul {
    height: 100%; }

.nav .left {
  text-align: left; }

.nav .center {
  -ms-flex: 1;
      flex: 1;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center; }

.nav .right {
  line-height: normal;
  text-align: right; }

.nav .home {
  display: block;
  height: 100%; }

.nav .logo {
  background: url("/img/logo.svg") center center no-repeat;
  background-size: contain;
  display: block;
  font-family: "Open Sans Condensed";
  font-size: 2em;
  font-weight: normal;
  height: 100%;
  width: 144px;
  text-decoration: none; }

.nav .tagline {
  font-size: 1.8em;
  opacity: .8; }

.nav .tagline, .nav .cart {
  font-family: "Open Sans Condensed";
  font-weight: normal; }

.nav .cart {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6em;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  margin-left: 50px; }
  .nav .cart.hidden {
    visibility: hidden; }
  .nav .cart a {
    line-height: 21.33333px;
    text-decoration: none;
    position: relative; }
    .nav .cart a::before {
      content: '\00a0';
      font-family: "FontAwesome";
      font-size: 1.6em;
      line-height: 35.2px;
      position: absolute;
      top: 0;
      right: 100%; }
  .nav .cart .placeholder {
    color: #00a6d5;
    font-family: "Open Sans";
    font-size: .5em;
    font-weight: bold;
    line-height: 16px;
    text-align: center; }

.nav .user {
  cursor: pointer;
  font-weight: normal;
  line-height: 32px; }
  .nav .user.disconnected .connected {
    display: none; }
  .nav .user.connected .disconnected {
    display: none; }
  .nav .user.member .member-badge {
    display: inline; }
  .nav .user a {
    text-decoration: none; }
  .nav .user .main::after, .nav .user .secondary::after {
    font-family: "FontAwesome";
    margin-left: 8px; }
  .nav .user .main::after {
    content: '\f007'; }
  .nav .user .secondary::after {
    content: '\f011'; }
  .nav .user .member-badge {
    display: none; }
    .nav .user .member-badge::after {
      color: #00a6d5;
      content: '\f005\00a0';
      font-family: 'FontAwesome'; }
  .nav .user .name {
    color: #00a6d5;
    font-weight: bold; }

.page > .footer {
  background-color: #2f2f2f;
  color: #c2c2c2;
  font-weight: bold;
  height: 32px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute; }
  .page > .footer a {
    text-decoration: none; }
  .page > .footer .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    .page > .footer .wrapper .terms-and-conditions {
      color: #00a6d5; }
    .page > .footer .wrapper > *:not(:last-child)::after {
      content: '\00a0-\00a0'; }

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .page .categories .category, .page [data-controller="CaresController"] > .cares .care, .page .gift-cards .gift-card {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%; }
  .order .toolbar {
    margin-bottom: 16px; }
    .order .toolbar .title {
      top: 80px;
      left: 0; }
  .order-summary .card[data-name="payment"] {
    min-width: 100% !important; } }

@media screen and (max-width: 849px) {
  .card[data-name='ItsAllGood'] {
    max-width: 100%; } }

@media screen and (max-width: 767px) {
  .tagline {
    display: none; }
  .copy {
    font-size: 10px; }
  .page .wrapper {
    padding: 0 16px; }
  .page h2 {
    margin-top: 30px; }
  .page h3 {
    margin-bottom: 30px; }
  .page .card {
    padding: 32px 16px; }
  .page .toolbar {
    margin-bottom: 32px; }
    .page .toolbar .title {
      top: 80px; }
  .page .categories .category, .page [data-controller="CategoriesController"] > .cares .care, .page .gift-cards .gift-card, .page .cards .card {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    padding: 10.66667px 16px;
    min-width: 100%; }
  .order .toolbar {
    margin-bottom: 48px; }
    .order .toolbar .title {
      top: 96px;
      left: 16px; }
  .order .card {
    padding: 16px 0 !important; }
  .signup .line {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
  .slider {
    max-width: 420px;
    width: 90%; }
  .order-summary .card[data-name="date"] {
    min-width: 100% !important; }
  .order-summary .card[data-name="order-summary"] .content .summary .table .row .col {
    width: 100% !important;
    display: block !important;
    text-align: center;
    padding: 0; }
  .order-summary .card[data-name="payment"] {
    min-width: 100% !important; }
  .order-summary .card[data-name="payment"] .content .payment {
    padding: 4px !important; }
  .confirmation .card {
    -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important; }
  .confirmation .card[data-controller='ConfirmationSummaryController'] .cares > .care:not(.hidden) {
    display: block !important; }
  .confirmation .card[data-controller='ConfirmationSummaryController'] .cares > .care .secondary {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .confirmation .card[data-controller='ConfirmationSummaryController'] .cares > .care .duration {
    text-align: left !important; } }

@media screen and (max-width: 576px) {
  .order .toolbar .title {
    display: none; } }

@media screen and (max-width: 479px) {
  .floating {
    min-width: 100% !important; } }

@media screen and (max-width: 379px) {
  .button, select, input[type="text"], input[type="password"], input[type="tel"], input[type="email"], input[type="file"] + label, input[type="submit"] {
    margin: 10px 5px; }
  .page .card {
    padding: 32px 5px; }
  .page .wrapper {
    padding: 0 8px; }
  .page .categories .category, .page [data-controller="CaresController"] > .cares .care, .page .gift-cards .gift-card {
    padding: 10.66667px 8px; }
  .highlight {
    padding: 0 8px; }
  .hiddenxs {
    display: none; }
  .toolbar .title {
    left: 10px; }
  .order .toolbar {
    margin-bottom: 64px; }
  .order-summary .card[data-name="order-summary"] .content .summary {
    padding: 32px 16px 16px !important; }
  .order-summary .cards input {
    margin: 10px; }
  .payment-form .button {
    min-width: 0; }
  .payment .message {
    text-align: center; } }
