@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes button-flash {
  0% {
    background: #222222; }
  49% {
    background: #222222; }
  50% {
    background: #E51914; }
  100% {
    background: #E51914; } }

@keyframes button-flash {
  0% {
    background: #222222; }
  49% {
    background: #222222; }
  50% {
    background: #E51914; }
  100% {
    background: #E51914; } }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: 300;
  height: 100%;
  padding: 88px 0 0 240px;
  color: #222222;
  display: none; }
  @media only screen and (max-width: 1199px) {
    body {
      padding: 48px 0 0 0; } }
  body.login-body {
    padding: 0;
    background: #222222; }
  body.modal-active {
    overflow: hidden;
    position: relative; }

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
  white-space: normal; }

strong {
  font-weight: 500; }

a, a:active, a:focus {
  outline: none;
  text-decoration: none !important; }

h3.inverse {
  font-weight: 500;
  padding: 10px 15px;
  background: #2a2a2a;
  color: #fff;
  display: inline-block;
  letter-spacing: 0; }
  h3.inverse.red {
    background: #E51914; }
  h3.inverse.dark-red {
    background: #b61410; }

h3 {
  font-weight: 500;
  letter-spacing: 0; }
  h3.inverse {
    padding: 5px 10px;
    font-weight: 500; }

h5, h6 {
  text-transform: uppercase; }

h5 {
  font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
  font-weight: 300; }

h6 {
  font-weight: 600;
  padding: 2px 5px;
  background: #E51914;
  color: #fff;
  display: inline-block; }
  h6.invert {
    color: #E51914;
    background: none; }

table {
  width: 100%;
  max-width: 100%; }
  @media only screen and (max-width: 767px) {
    table {
      font-size: 0.7em; } }
  table tr {
    border: 1px solid #d2d3d5; }
    table tr:nth-child(even) {
      background: #F8F9FB; }
  table th, table td {
    padding: 10px 15px; }
  table thead tr {
    background: #E4E4E4;
    text-transform: uppercase;
    font-weight: 500; }
    table thead tr th {
      width: 15%;
      color: #666666; }
  table td {
    font-weight: 400; }

.float-right {
  float: right; }

.float-left {
  float: left; }

.clear {
  clear: both; }

.textbox, .select-dropdown {
  padding: 5px 35px 5px 15px;
  font-weight: 500;
  border: 1px solid #e4e4e4;
  height: 35px;
  margin-right: 20px;
  background: #fff; }

.links a {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0;
  padding: 7px 25px;
  color: #fff;
  margin-right: 10px;
  margin-top: 10px;
  display: inline-block; }
  .links a.red {
    background: #E51914; }
  .links a.disabled {
    background-color: #b4b4b4;
    pointer-events: none; }
  .links a.grey {
    background-color: #808080; }

.error {
  color: #E51914; }

.loader {
  margin: 60px auto;
  font-size: 10.2px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.6em solid #cfcfcf;
  border-right: 1.6em solid #cfcfcf;
  border-bottom: 1.6em solid #cfcfcf;
  border-left: 1.6em solid #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loader 1.1s infinite linear;
  -moz-animation: loader 1.1s infinite linear;
  -o-animation: loader 1.1s infinite linear;
  animation: loader 1.1s infinite linear;
  overflow: hidden; }
  .loader.black {
    border-left-color: #000; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 7em;
  height: 7em; }

.exit {
  float: right;
  font-size: 150%;
  color: #fff;
  background: #E51914;
  padding: 10px; }

@media only screen and (max-width: 991px) {
  .close-button-col {
    position: absolute;
    top: 10px;
    right: -5px; } }

.message-details {
  font-weight: 400;
  color: #666;
  margin: 15px 0 5px 0; }

.error-page {
  text-align: center; }
  .error-page h1 {
    font-size: 20em;
    margin-bottom: -10px; }
  .error-page h3 {
    margin: -10px 0 30px 0; }
  .error-page h4 {
    margin-bottom: 20px; }
  .error-page .button {
    width: 100px;
    margin: auto; }

.corner-ribbon {
  min-width: 200px;
  background: #FDD219;
  color: #222222;
  position: absolute;
  top: 15px;
  left: -65px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  text-transform: uppercase;
  padding: 0 25px;
  font-weight: 700; }
  .corner-ribbon.top-right {
    top: 15px;
    right: -65px;
    left: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }
  .corner-ribbon.bottom-left {
    top: auto;
    bottom: 15px;
    left: -65px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }
  .corner-ribbon.bottom-right {
    top: auto;
    right: -65px;
    bottom: 15px;
    left: auto;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }

.product-details-view > .product-details > .description table,
.account-benefits .benefit-details table {
  border: 1px solid #ddd; }
  .product-details-view > .product-details > .description table tr,
  .account-benefits .benefit-details table tr {
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 400; }
  .product-details-view > .product-details > .description table th,
  .account-benefits .benefit-details table th {
    background: #E51914;
    color: #fff;
    padding: 5px 10px; }
  .product-details-view > .product-details > .description table td,
  .account-benefits .benefit-details table td {
    border: 1px solid #ddd;
    padding: 5px 10px; }

.help-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 25px;
  width: 25px;
  background-image: url("content/images/info-icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer; }
  .help-icon:hover {
    background-image: url("content/images/info-icon-hover.png");
    background-repeat: no-repeat;
    background-position: center center; }

.help-block {
  background: #ddd;
  padding: 20px;
  position: absolute;
  top: -195px;
  right: 0;
  width: 250px !important;
  height: auto;
  display: block;
  z-index: 501;
  height: auto;
  width: 250px;
  padding: 20px;
  display: none; }
  .help-block::after {
    border-color: #ddd transparent transparent;
    border-style: solid;
    border-width: 10px;
    content: " ";
    display: inline-block;
    height: 0;
    position: absolute;
    width: 0;
    bottom: -20px;
    right: 20px; }
  .help-block .help-block-header {
    font-weight: 500;
    letter-spacing: 0;
    display: block;
    color: #222222; }
  .help-block .help-block-close {
    cursor: pointer;
    background: #e3160d none repeat scroll 0 0;
    color: #fff;
    font-size: 120%;
    padding: 5px 5px 7px 6px;
    position: absolute;
    top: -10px;
    right: -10px; }

.help-block-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: .5s all ease-in-out;
  z-index: -1; }
  .help-block-overlay.active {
    opacity: 1;
    z-index: 500; }

.help-active {
  z-index: 501 !important;
  position: relative !important; }

.consumables {
  margin-top: 20px; }
  .consumables .select-dropdown {
    width: 100%; }
  .consumables table td, .consumables table th {
    width: 12%; }
    .consumables table td.active, .consumables table th.active {
      background: #facccb;
      border-top: 1px solid #facccb; }
    .consumables table td .glyphicon, .consumables table th .glyphicon {
      font-size: 2em; }
    .consumables table td .glyphicon-ok, .consumables table th .glyphicon-ok {
      color: #E51914; }
    .consumables table td:first-child, .consumables table th:first-child {
      width: 40%; }
  .consumables .button {
    width: 320px;
    display: block; }

.contact .contact-header {
  background: #E4E4E4;
  margin-top: 20px; }
  .contact .contact-header > span {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    color: #777; }

.contact .contact-body, .contact .change-password-body {
  background: #F8F9FB;
  border: 1px solid #E4E4E4;
  padding: 20px;
  position: relative; }
  .contact .contact-body label, .contact .change-password-body label {
    margin: 10px 10px 10px 0;
    font-weight: 400;
    font-weight: normal; }
  .contact .contact-body .dropdown-surround, .contact .change-password-body .dropdown-surround {
    position: absolute;
    left: 190px;
    right: 20px;
    display: inline-block; }
  .contact .contact-body .select-dropdown, .contact .change-password-body .select-dropdown {
    width: 100%; }
  .contact .contact-body .textbox, .contact .change-password-body .textbox {
    width: 100%;
    height: 200px;
    resize: none; }
  .contact .contact-body .button, .contact .change-password-body .button {
    width: 100%; }
  .contact .contact-body .error, .contact .change-password-body .error {
    margin: 5px 0 -5px 0;
    display: block; }

.contact .change-password-body .textbox {
  height: initial;
  margin-top: 10px; }
  .contact .change-password-body .textbox:first-child {
    margin: 0; }

.contact .change-password-body .success {
  color: #E51914;
  text-align: center;
  display: block; }

.broadcast-message {
  display: block;
  background: #D40905;
  padding: 5px 25px 5px 25px;
  text-align: center; }
  .broadcast-message > div {
    position: relative; }
    .broadcast-message > div span {
      color: #fff;
      padding-right: 50px; }
      @media only screen and (max-width: 1199px) {
        .broadcast-message > div span {
          padding: 0 10px;
          display: block; } }
    .broadcast-message > div .glyphicon {
      color: #fff;
      cursor: pointer;
      font-weight: normal;
      margin-top: -7px;
      padding: 0 10px;
      position: absolute;
      right: -15px;
      top: 50%; }
  .broadcast-message.important {
    background: #FDD219; }
    .broadcast-message.important span {
      color: #222222;
      font-weight: 500; }
    .broadcast-message.important .glyphicon {
      color: #222222; }
      .broadcast-message.important .glyphicon:first-child {
        left: -15px;
        right: auto; }

.target-item-block .target-item {
  margin: 10px 0;
  padding: 0;
  background: #fff;
  height: 235px;
  float: left;
  width: 100%; }
  .target-item-block .target-item .product {
    border: 1px solid #ddd;
    border-bottom: none;
    position: relative; }
    .target-item-block .target-item .product.help-active {
      border-color: #464646; }
    .target-item-block .target-item .product .main-image {
      width: 100%;
      height: 196px;
      display: block;
      background: url(Images/product-placeholder.png) no-repeat center;
      background-size: cover;
      overflow: hidden;
      position: relative; }
      .target-item-block .target-item .product .main-image > .corner-ribbon {
        line-height: 40px; }
    .target-item-block .target-item .product .points {
      width: 100%;
      padding: 9px 10px;
      background: #E51914;
      color: #fff;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: uppercase;
      text-align: center;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
      .target-item-block .target-item .product .points.unavailable {
        background: #222222; }
      .target-item-block .target-item .product .points .required-bar {
        height: 3px;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        background: #fff;
        display: inline-block;
        float: right;
        margin: 9px 0;
        width: 100%; }
        .target-item-block .target-item .product .points .required-bar .points-bar {
          background: #E51914;
          display: block;
          height: 3px;
          width: 60px; }
    .target-item-block .target-item .product .links a {
      margin: 0;
      display: block;
      text-align: center;
      padding: 9px 25px; }
    .target-item-block .target-item .product .help-icon {
      filter: invert(100%); }

@media only screen and (max-width: 767px) {
  .advert-dashboard-block {
    position: relative;
    float: left;
    width: 100%; } }

@media only screen and (max-width: 991px) {
  .advert-dashboard-block {
    position: relative;
    float: right; } }

.advert-dashboard-block .advert {
  position: relative;
  overflow: hidden;
  height: 255px; }
  .advert-dashboard-block .advert img {
    margin: 10px auto;
    width: auto;
    height: 235px;
    display: block;
    position: absolute;
    left: -100%;
    right: -100%; }

.view-selection {
  font-weight: 500;
  border-bottom: 1px solid #D0D0D0; }
  .view-selection > a, .view-selection .view-selection-header {
    color: #808080;
    text-transform: uppercase;
    padding: 10px 70px 5px 0;
    display: inline-block; }
    .view-selection > a.active, .view-selection .view-selection-header.active {
      color: #222222;
      font-weight: 500;
      letter-spacing: 0; }
      .view-selection > a.active:after, .view-selection .view-selection-header.active:after {
        content: " ";
        background: #E51914;
        height: 5px;
        width: 100%;
        display: block;
        position: relative;
        bottom: -8px; }
    @media only screen and (max-width: 991px) {
      .view-selection > a, .view-selection .view-selection-header {
        padding-right: 30px; } }
    @media only screen and (max-width: 767px) {
      .view-selection > a > .view-description, .view-selection .view-selection-header > .view-description {
        display: none; } }
  .view-selection .view-selection-header {
    display: block;
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
    background-image: url("content/Images/reward-icon-red.png");
    background-repeat: no-repeat;
    background-position: left top 8px;
    padding-left: 35px; }
  .view-selection.bdf .view-selection-header {
    background-image: url("content/Images/bdf-icon-red.png");
    background-repeat: no-repeat;
    background-position: left top 10px; }
  .view-selection.bdf > a.active:after {
    background: #b61410; }
  .view-selection.cc .view-selection-header {
    background-image: url(content/images/cc-icon.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: 18px 10px; }
  .view-selection.cc > a.active:after {
    background: #600000; }
  .view-selection.dsp.davanti .view-selection-header {
    background-image: url("content/Images/dsp-icon-davanti.png");
    background-repeat: no-repeat;
    background-position: left top 11px; }
  .view-selection.dsp.davanti > a.active:after {
    background: #FB6507; }
  .view-selection.dsp.evergreen .view-selection-header {
    background-image: url("content/images/dsp-icon-evergreen.png");
    background-repeat: no-repeat;
    background-position: left top 11px; }
  .view-selection.dsp.evergreen > a.active:after {
    background: #96BE0D; }
  .view-selection.dsp.landsail .view-selection-header {
    background-image: url("content/images/dsp-icon-landsail.png");
    background-repeat: no-repeat;
    background-position: left top 11px; }
  .view-selection.dsp.landsail > a.active:after {
    background: #005BAA; }

.activity-filter {
  margin: 20px 0; }
  .activity-filter > span {
    margin-right: 20px; }
    @media only screen and (max-width: 767px) {
      .activity-filter > span {
        display: block;
        margin-bottom: 10px;
        width: 100%; } }
  .activity-filter .select-dropdown {
    margin: 0 20px 10px 0; }

.breakdown {
  transition: min-height 0.3s linear; }
  .breakdown table {
    min-height: 82px; }
    .breakdown table thead tr th.description {
      width: 40%; }
    .breakdown table thead tr th.earned {
      background: #EFEFEF; }
    .breakdown table thead tr th.spent {
      background: #D0D0D0; }
    .breakdown table thead tr th.balance {
      background: #222222;
      color: #fff; }
    .breakdown table td.earned, .breakdown table td.spent, .breakdown table td.balance {
      font-weight: 500;
      letter-spacing: 0; }
    .breakdown table td.spent {
      color: #E51914; }

.user-details {
  font-weight: 500;
  color: #737373;
  width: 100%;
  font-size: 110%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  margin-bottom: 20px; }
  .user-details .detail {
    display: inline-block; }
    .user-details .detail > span {
      font-weight: 500;
      letter-spacing: 0;
      color: #222222;
      padding-left: 5px; }
    .user-details .detail .spacer {
      height: 20px;
      background: #d0d0d0;
      width: 1px;
      margin: 0 10px -5px 10px;
      display: inline-block; }
    .user-details .detail.address {
      display: block;
      margin: 20px 0; }
      .user-details .detail.address > span {
        display: block;
        padding: 0; }
    .user-details .detail.delivery {
      display: block;
      margin-top: 20px; }
    .user-details .detail.delivery-day {
      display: block;
      margin-top: 5px;
      color: #222222; }
      .user-details .detail.delivery-day > span {
        color: #666;
        font-weight: normal; }
  .user-details .support {
    background: #222222;
    color: #d0d0d0;
    display: inline-block;
    padding: 2px 10px;
    margin-top: 20px; }
    .user-details .support > strong {
      color: #fff; }
  .user-details a.button {
    padding: 15px 25px;
    width: auto;
    display: inline-block;
    margin-top: 20px; }

.orders .order {
  border-bottom: 1px solid #d0d0d0;
  padding: 20px; }
  .orders .order h3, .orders .order h4 {
    display: inline-block;
    margin: 10px 10px 10px 0; }
    .orders .order h3.inverse.red, .orders .order h4.inverse.red {
      text-transform: uppercase; }
  .orders .order .order-detail td {
    vertical-align: middle; }
    .orders .order .order-detail td.options span {
      display: inline-block;
      font-size: 1em;
      line-height: 1em; }

.earning-rules {
  margin-top: 50px;
  position: relative;
  background: #fff; }
  .earning-rules th > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 10px; }
    @media only screen and (max-width: 991px) {
      .earning-rules th > span {
        display: none; } }
  .earning-rules td, .earning-rules th {
    text-align: center; }
  .earning-rules .help-icon {
    filter: invert(100%);
    right: auto;
    left: 170px;
    top: 0px; }
  .earning-rules .help-block {
    left: -16px;
    top: 30px;
    right: auto; }
  .earning-rules.help-active {
    padding: 5px 20px; }
    .earning-rules.help-active .help-icon {
      left: 190px;
      top: 25px; }

.account-benefits {
  display: inline-block; }
  .account-benefits > div {
    margin: 15px 0; }
    .account-benefits > div:nth-child(4) {
      clear: left; }
    .account-benefits > div .benefit {
      background: #f1f1f1;
      padding: 20px 20px 20px 20px;
      min-height: 462px;
      position: relative; }
      .account-benefits > div .benefit h3 {
        margin-top: 0;
        min-height: 52px;
        max-height: 52px; }
      .account-benefits > div .benefit .benefit-details {
        height: 0;
        min-height: 300px;
        color: #333;
        overflow: hidden;
        -moz-transition: 1s height ease-in-out;
        -o-transition: 1s height ease-in-out;
        -webkit-transition: 1s height ease-in-out;
        transition: 1s height ease-in-out; }
        .account-benefits > div .benefit .benefit-details > span {
          height: auto; }
      .account-benefits > div .benefit .read-more-wrapper {
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f1f1f1 100%);
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f1f1f1 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f1f1f1 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f1f1f1',GradientType=0 );
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 50px;
        padding: 200px 0 0 0;
        opacity: 1;
        z-index: 1;
        -moz-transition: 1.5s all ease-in-out;
        -o-transition: 1.5s all ease-in-out;
        -webkit-transition: 1.5s all ease-in-out;
        transition: 1.5s all ease-in-out; }
        .account-benefits > div .benefit .read-more-wrapper.active {
          opacity: 0;
          z-index: -1; }
      .account-benefits > div .benefit .read-more {
        color: #fff;
        background: #E51914;
        display: block;
        text-align: center;
        font-size: 1em;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0;
        padding: 5px 20px;
        margin-top: 30px; }

.rewards-filter {
  font-weight: 500;
  color: #737373;
  margin: 30px 0 0 20px;
  float: right; }
  .rewards-filter span {
    margin-right: 5px; }
  @media only screen and (max-width: 991px) {
    .rewards-filter span, .rewards-filter .select-dropdown, .rewards-filter .textbox {
      display: inline-block;
      width: 100%; } }

.rewards-list {
  background: #F1F1F1;
  padding: 20px;
  margin-top: 20px;
  clear: both;
  display: inline-block;
  width: 100%;
  min-height: 405px; }
  .rewards-list .product {
    background: #fff;
    padding: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative; }
    .rewards-list .product.active + .active-icon {
      content: " ";
      border: 7px solid transparent;
      border-bottom-color: #222222;
      bottom: 0;
      position: absolute;
      left: 50%;
      display: inline;
      margin-left: -7px; }
      @media only screen and (max-width: 480px) {
        .rewards-list .product.active + .active-icon {
          bottom: -30px; } }
    .rewards-list .product.active .product-view-button {
      background: #b4b4b4;
      pointer-events: none; }
    .rewards-list .product > img {
      max-width: 100%;
      height: auto; }
    .rewards-list .product .name {
      padding: 5px 0;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: -0.022em;
      height: 3.3em;
      overflow: hidden;
      -ms-text-overflow: ellipsis;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .rewards-list .product .points {
      width: 100%;
      padding: 5px 15px;
      background: #E51914;
      color: #fff;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: uppercase; }
      .rewards-list .product .points.unavailable {
        background: #222222; }
      .rewards-list .product .points .required-bar {
        height: 3px;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        background: #fff;
        display: inline-block;
        float: right;
        margin: 9px 0;
        width: 30%; }
        .rewards-list .product .points .required-bar .points-bar {
          background: #E51914;
          display: block;
          height: 3px;
          width: 60px;
          max-width: 100%; }
    .rewards-list .product .links > a {
      padding: 7px 0;
      margin-right: 0;
      display: inline-block;
      text-align: center; }
    .rewards-list .product .corner-ribbon {
      line-height: 40px; }
      .rewards-list .product .corner-ribbon.special-offer > span {
        font-size: 0.7em; }
  .rewards-list .show-more a {
    display: inline-block;
    text-align: center; }
    .rewards-list .show-more a:focus, .rewards-list .show-more a:active {
      color: #fff; }

.mainstore-list {
  background: #F1F1F1;
  padding: 20px;
  margin-top: 20px;
  clear: both;
  display: inline-block;
  width: 100%;
  min-height: 405px; }
  .mainstore-list .product {
    background: #fff;
    padding: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative; }
    .mainstore-list .product.active + .active-icon {
      content: " ";
      border: 7px solid transparent;
      border-bottom-color: #222222;
      bottom: 0;
      position: absolute;
      left: 50%;
      display: inline;
      margin-left: -7px; }
      @media only screen and (max-width: 480px) {
        .mainstore-list .product.active + .active-icon {
          bottom: -30px; } }
    .mainstore-list .product.active .product-view-button {
      background: #b4b4b4;
      pointer-events: none; }
    .mainstore-list .product > img {
      max-width: 100%;
      height: auto; }
    .mainstore-list .product .name {
      padding: 5px 0;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: -0.022em;
      height: 3.3em;
      overflow: hidden;
      -ms-text-overflow: ellipsis;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .mainstore-list .product .points {
      width: 100%;
      padding: 5px 15px;
      background: #E51914;
      color: #fff;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: uppercase; }
      .mainstore-list .product .points.unavailable {
        background: #222222; }
      .mainstore-list .product .points .required-bar {
        height: 3px;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        background: #fff;
        display: inline-block;
        float: right;
        margin: 9px 0;
        width: 30%; }
        .mainstore-list .product .points .required-bar .points-bar {
          background: #E51914;
          display: block;
          height: 3px;
          width: 60px;
          max-width: 100%; }
    .mainstore-list .product .links {
      margin: 10px 0 15px 0; }
      .mainstore-list .product .links > a {
        padding: 7px 0;
        margin-right: 0;
        display: inline-block;
        text-align: center; }
        .mainstore-list .product .links > a.product-view-button {
          width: 28%; }
        .mainstore-list .product .links > a.add-to-basket-button, .mainstore-list .product .links > a.buy-now-button {
          width: 70%;
          float: right; }
    .mainstore-list .product .corner-ribbon {
      line-height: 40px; }
      .mainstore-list .product .corner-ribbon.special-offer > span {
        font-size: 0.7em; }
  .mainstore-list .show-more a {
    display: inline-block;
    text-align: center; }
    .mainstore-list .show-more a:focus, .mainstore-list .show-more a:active {
      color: #fff; }

.product-details-view {
  display: none; }
  .product-details-view .product-details {
    font-weight: 500;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-top: 3px solid #222222;
    font-size: 110%;
    color: #737373;
    position: relative;
    overflow: hidden; }
    .product-details-view .product-details h1 {
      margin: 0;
      font-weight: 500;
      letter-spacing: 0;
      color: #222222; }
    .product-details-view .product-details .category {
      display: block;
      font-weight: 500;
      letter-spacing: 0;
      color: #E51914; }
    .product-details-view .product-details .point-cost {
      background: #E51914;
      color: #fff;
      padding: 3px 7px;
      display: inline-block;
      text-transform: uppercase;
      font-weight: 500;
      letter-spacing: 0;
      margin: 10px 30px 10px 0; }
    .product-details-view .product-details .availablity {
      color: #222222;
      display: inline-block; }
      .product-details-view .product-details .availablity span {
        color: #737373; }
    .product-details-view .product-details .description {
      line-height: 1.7em;
      margin-bottom: 10px; }
    .product-details-view .product-details img {
      max-width: 100%;
      height: auto; }
      .product-details-view .product-details img.main-image {
        margin-bottom: 5px;
        margin-right: 5px; }
      .product-details-view .product-details img.thumbnail-image {
        width: 14.333333%;
        margin-right: 1%;
        cursor: pointer; }
    .product-details-view .product-details .tag {
      font-style: italic; }
    .product-details-view .product-details .purchase-options .quantity, .product-details-view .product-details .purchase-options .options {
      display: inline-block;
      margin: 10px 20px 10px 0; }
    .product-details-view .product-details .purchase-options span {
      margin-right: 10px; }
    .product-details-view .product-details .purchase-options .customisation {
      margin-top: 10px; }
      .product-details-view .product-details .purchase-options .customisation .textbox {
        width: 100%; }
    .product-details-view .product-details .links {
      margin: 40px 0 20px 0; }
      .product-details-view .product-details .links > a {
        padding-left: 50px;
        padding-right: 50px; }
    .product-details-view .product-details .corner-ribbon {
      width: 250px; }

.set-target-item {
  width: auto;
  margin-bottom: 20px; }
  .set-target-item > a.button {
    width: auto;
    display: inline-block;
    padding: 5px 15px;
    background: #E51914; }
  .set-target-item.remove a.button {
    background: #222222; }
  @media only screen and (max-width: 767px) {
    .set-target-item {
      width: 100%;
      text-align: center;
      font-size: 8em; } }

.special-offer-advert {
  margin: 20px 0; }
  .special-offer-advert img {
    width: 100%;
    height: auto; }

.login {
  background: #fff;
  width: 50%;
  margin: 10% auto; }
  .login .content {
    padding: 5% 10% 7% 10%;
    width: 100%;
    display: block;
    position: relative;
    text-align: center; }
    .login .content img {
      margin: 0 auto 30px auto;
      display: block;
      max-width: 100%; }
    .login .content .sub-heading, .login .content .forgot-password {
      color: #949494;
      font-size: 1.2em;
      margin-bottom: 20px; }
    .login .content .textbox {
      width: 100%;
      display: block;
      margin-top: 10px;
      font-size: 1.2em;
      padding: 10px 20px;
      height: 45px; }
    .login .content .button {
      font-size: 1.4em; }
    .login .content .validation-summary-errors {
      padding: 20px 0 10px 0; }
      .login .content .validation-summary-errors ul {
        margin: 0 0 10px 0;
        padding: 0; }
        .login .content .validation-summary-errors ul li {
          list-style: none; }
    .login .content .field-validation-error {
      text-align: right;
      display: block;
      padding: 5px 0 15px 0; }
    .login .content .error {
      font-weight: 500; }
    .login .content .forgot-password {
      margin: 20px 0 0 0; }
      .login .content .forgot-password a {
        color: initial; }
        .login .content .forgot-password a:hover {
          color: #E51914; }
  @media only screen and (max-width: 991px) {
    .login {
      width: 100%;
      height: 100%;
      margin: auto; } }

.checkout .table-responsive, .orders .table-responsive {
  border: none; }

.checkout .totals, .orders .totals {
  width: 70%;
  display: block; }
  @media only screen and (max-width: 991px) {
    .checkout .totals, .orders .totals {
      width: 100%; } }
  .checkout .totals .subtotal, .checkout .totals .remaining-balance, .checkout .totals .total-points, .checkout .totals .overdraft, .orders .totals .subtotal, .orders .totals .remaining-balance, .orders .totals .total-points, .orders .totals .overdraft {
    padding: 5px 0;
    font-weight: 400; }
    .checkout .totals .subtotal span, .checkout .totals .remaining-balance span, .checkout .totals .total-points span, .checkout .totals .overdraft span, .orders .totals .subtotal span, .orders .totals .remaining-balance span, .orders .totals .total-points span, .orders .totals .overdraft span {
      float: left; }
  .checkout .totals .overdraft, .orders .totals .overdraft {
    color: #666; }
  .checkout .totals .subtotal, .orders .totals .subtotal {
    color: #808080; }
  .checkout .totals .remaining-balance, .orders .totals .remaining-balance {
    color: #E51914; }
  .checkout .totals .total-points, .orders .totals .total-points {
    font-weight: 500;
    letter-spacing: 0;
    font-size: 1.2em; }
  .checkout .totals .total-points:last-of-type, .orders .totals .total-points:last-of-type {
    margin-top: 0; }
  .checkout .totals .links, .orders .totals .links {
    margin-top: 20px;
    margin-bottom: 20px; }
    .checkout .totals .links a, .orders .totals .links a {
      font-size: 1.2em;
      padding: 15px 30px;
      margin: 0; }
  .checkout .totals > .totals-sub-section, .orders .totals > .totals-sub-section {
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 10px;
    padding-bottom: 5px; }
    .checkout .totals > .totals-sub-section.dealer-support-totals .remaining-balance, .orders .totals > .totals-sub-section.dealer-support-totals .remaining-balance {
      color: #FB6507; }
    .checkout .totals > .totals-sub-section.dealer-support-totals.landsail .remaining-balance, .orders .totals > .totals-sub-section.dealer-support-totals.landsail .remaining-balance {
      color: #005BAA; }
    .checkout .totals > .totals-sub-section.dealer-support-totals.evergreen .remaining-balance, .orders .totals > .totals-sub-section.dealer-support-totals.evergreen .remaining-balance {
      color: #96BE0D; }

.checkout .user-details, .orders .user-details {
  border: none; }
  .checkout .user-details .detail, .orders .user-details .detail {
    display: block;
    margin-bottom: 20px; }
    .checkout .user-details .detail.address, .orders .user-details .detail.address {
      margin: 0; }

.checkout {
  border-bottom: 1px solid #d0d0d0; }

.orders table tr th {
  width: 20%; }
  .orders table tr th:first-child {
    width: 40%; }

.ct-chart-bar {
  margin: 20px 0; }

.ct-series-a .ct-bar, .ct-series-b .ct-bar {
  stroke-width: 5%;
  stroke: #222222; }

.ct-series-b .ct-bar {
  stroke: #E51914; }

.ct-labels span {
  color: #808080;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase; }
  .ct-labels span.ct-horizontal {
    color: #1c1c1c;
    max-width: 30px;
    margin: auto; }
    @media only screen and (max-width: 767px) {
      .ct-labels span.ct-horizontal {
        transform: rotate(270deg);
        padding-right: 10px; } }
  @media only screen and (max-width: 480px) {
    .ct-labels span {
      font-size: 0.8em !important; } }

.ct-grids .ct-horizontal {
  stroke: none; }

.chartist-tooltip {
  position: absolute;
  display: inline-block;
  opacity: 0;
  background: #fff;
  color: #222222;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
  border-radius: 5px;
  border: 1px solid #B2B2B2;
  box-shadow: 2px 2px 2px 0 #ddd;
  min-width: 160px; }
  .chartist-tooltip:after {
    background-color: #fff;
    box-shadow: -2px 2px 2px 0 #ddd;
    border: 1px solid #B2B2B2;
    border-right-width: 0;
    border-top-width: 0;
    content: "\00a0";
    display: block;
    height: 20px;
    left: 50%;
    position: relative;
    top: 10px;
    transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    width: 20px;
    margin-left: -10px;
    z-index: -1; }
  .chartist-tooltip.tooltip-show {
    opacity: 1; }
  .chartist-tooltip > .chartist-tooltip-container {
    padding: 15px;
    margin: 0;
    text-align: left;
    display: flex;
    justify-content: space-between; }
    .chartist-tooltip > .chartist-tooltip-container > span {
      padding: 0 10px;
      font-weight: 500;
      text-transform: uppercase; }
      .chartist-tooltip > .chartist-tooltip-container > span.chartist-tooltip-meta {
        color: #808080; }
      .chartist-tooltip > .chartist-tooltip-container > span.chartist-tooltip-value {
        float: right;
        font-weight: 500;
        letter-spacing: 0; }
    .chartist-tooltip > .chartist-tooltip-container:first-child .chartist-tooltip-value {
      color: #E51914; }
    .chartist-tooltip > .chartist-tooltip-container:last-child {
      border-top: 1px solid #B2B2B2;
      margin-bottom: -20px; }
    .chartist-tooltip > .chartist-tooltip-container:only-of-type {
      border-top: none; }
      .chartist-tooltip > .chartist-tooltip-container:only-of-type .chartist-tooltip-value {
        color: #222222; }
  .chartist-tooltip.tooltip-thin {
    max-width: 120px; }
    .chartist-tooltip.tooltip-thin > .chartist-tooltip-container > span {
      padding: 0;
      text-align: center;
      float: none;
      display: block; }

.faq-item {
  width: 100%;
  margin: 20px 0; }
  .faq-item .question {
    background: #ddd;
    color: #222222;
    padding: 10px;
    font-weight: 500;
    position: relative;
    font-size: 1.2em; }
    .faq-item .question .toggle {
      background: #E51914;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      cursor: pointer; }
      .faq-item .question .toggle .glyphicon {
        transition: .3s transform ease-in-out;
        color: #fff;
        display: block;
        width: 16px;
        height: 16px;
        margin: 13px;
        margin-top: 11px; }
    .faq-item .question.active .toggle .glyphicon {
      transform: rotate(180deg);
      margin-top: 15px; }
  .faq-item .answer {
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    display: none; }
    .faq-item .answer > div {
      padding: 10px;
      font-size: 1.3em; }

label {
  font-weight: 500; }

.o-field {
  display: block;
  align-items: center;
  margin-bottom: 15px; }
  .o-field:last-child {
    margin-bottom: 0; }
  @media (min-width: 767px) {
    .o-field {
      display: flex; } }
  @media (min-width: 991px) {
    .o-field {
      margin-bottom: 0; } }
  .o-field label {
    margin: 0;
    margin-right: 20px;
    white-space: nowrap;
    display: block;
    margin-bottom: 5px; }
    @media (min-width: 767px) {
      .o-field label {
        margin-bottom: 0; } }
  .o-field input, .o-field .textbox, .o-field .select-dropdown {
    margin-right: 0;
    flex: 1;
    width: 100%; }

.o-boxoff {
  margin-bottom: 15px; }

.o-boxoff--small {
  margin-bottom: 7.5px; }

.o-boxoff--large {
  margin-bottom: 30px; }

.flush {
  margin: 0; }

.o-island {
  padding: 15px; }

.o-island--large {
  padding: 15px; }
  @media (min-width: 480px) {
    .o-island--large {
      padding: 30px; } }

.o-island--container {
  padding-bottom: 0; }

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

.item-list__item {
  padding: 5px 15px;
  min-width: 160px; }
  .item-list__item:first-child {
    padding-top: 10px; }
  .item-list__item:last-child {
    padding-bottom: 10px; }

.well {
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 15px; }
  @media (min-width: 991px) {
    .well--with-heading {
      padding-top: 60px;
      position: relative; } }

.c-heading--giga {
  font-size: 30px;
  font-weight: 500; }

.c-heading--mega {
  font-size: 25px;
  font-weight: 500; }

.c-heading--kilo {
  font-size: 20px;
  font-weight: 600; }

.c-heading--block {
  padding: 10px 15px;
  background: #2a2a2a;
  color: #fff;
  display: inline-block;
  margin-top: 0; }

.c-heading--salutation {
  margin-top: 0;
  font-weight: 500; }
  .c-heading--salutation strong {
    font-weight: 700; }

.c-heading--block--red {
  background: #E51914; }

.c-heading--well {
  margin-bottom: 15px; }
  @media (min-width: 991px) {
    .c-heading--well {
      position: absolute;
      left: -10px;
      top: -10px; } }

.team-member {
  background: white;
  position: relative;
  padding: 15px;
  font-size: 16px;
  flex-direction: column;
  margin-bottom: 15px; }
  @media (min-width: 991px) {
    .team-member {
      display: flex; } }
  @media (min-width: 991px) {
    .team-member--large {
      flex-direction: row; } }
  .team-member--large .team-member__headshot {
    max-width: 300px; }
  .team-member__role {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; }
    @media (min-width: 991px) {
      .team-member__role {
        position: absolute;
        top: -10px;
        right: -10px; } }
    @media (max-width: 991px) {
      .team-member__role {
        font-size: 20px;
        text-align: center; } }
  .team-member__small-role {
    margin: 0;
    color: #999;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px; }
  .team-member__headshot {
    height: auto;
    width: 100%;
    flex-grow: 0; }
    @media (min-width: 991px) {
      .team-member__headshot {
        margin-right: 15px; } }
  .team-member__content {
    padding-top: 15px; }
    @media (min-width: 991px) {
      .team-member__content {
        padding-top: 60px; } }
  .team-member__description {
    color: #999; }
  .team-member__info-section h5 {
    margin-bottom: 0;
    text-transform: none;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0px; }
  .team-member__info-section p {
    font-weight: 500;
    margin: 0; }

.side-bar {
  background: #222222;
  width: 240px;
  bottom: 0;
  left: 0;
  top: 88px;
  position: fixed;
  color: #b4b4b4;
  font-weight: 500;
  letter-spacing: 0;
  z-index: 10;
  transition: transform 0.3s;
  transform: translate3d(0, 0, 0); }
  @media only screen and (max-width: 1199px) {
    .side-bar {
      transform: translate3d(-240px, 0, 0);
      top: 48px; }
      .side-bar.open {
        transform: translate3d(0, 0, 0); } }

.side-bar__header {
  padding: 15px;
  color: white;
  font-weight: 500;
  padding: 14px 25px;
  font-size: 16px;
  background-color: #E51914;
  margin-bottom: 30px; }

.side-bar-menu {
  margin-bottom: 15px; }

.side-bar-menu__heading {
  color: #696969;
  font-size: 13px;
  padding: 8px 25px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600; }

.side-bar-menu__list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .side-bar-menu__list > li {
    padding: 6px 25px;
    position: relative;
    display: flex; }

.side-bar__social-links {
  padding-left: 25px; }

.side-bar__social {
  color: #E4E4E4;
  font-size: 24px;
  margin-right: 10px; }
  .side-bar__social:hover {
    color: white; }

.menu-link {
  color: #bebebe;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  display: inline-block; }
  .menu-link.active:before {
    display: block;
    width: 3px;
    height: 100%;
    content: " ";
    background-color: #E51914;
    left: 3px;
    position: absolute;
    top: 0; }
  .menu-link:hover, .menu-link.active {
    color: white; }

.c-line-nav {
  list-style: none;
  display: block;
  padding: 0;
  margin-bottom: 15px;
  margin-top: 5px; }
  @media (min-width: 991px) {
    .c-line-nav {
      display: inline;
      margin-right: 30px; } }
  .c-line-nav__item {
    display: inline;
    margin: 10px;
    margin-left: 0;
    text-align: center;
    padding: 3px 0;
    font-weight: 500;
    white-space: nowrap; }
    @media (min-width: 991px) {
      .c-line-nav__item {
        padding: 3px 5px; } }
    .c-line-nav__item--active {
      border-bottom: 3px solid #E51914; }
    .c-line-nav__item a {
      color: #222222; }
      @media (min-width: 991px) {
        .c-line-nav__item a {
          position: relative;
          left: 1px; } }

/**
    Select Dropdown
    ---------------

    This is a deprecated control using the <select> element.
    .dropdown is a non-drop-in replacement which is based on the bootstrap dropdown control
*/
.select-dropdown {
  background: #fff; }
  .select-dropdown > option {
    font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
    font-weight: 300;
    padding: 2px 15px; }

/**
    Dropdown
    --------

    Extends the bootstrap dropdown control
*/
.dropdown-menu {
  border-radius: 0;
  padding: 0; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-color: #E51914; }

.dropdown-menu > li > a {
  font-weight: 500;
  text-align: left;
  padding: 3px 7px; }

.c-vehicle-selector {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media (min-width: 991px) {
    .c-vehicle-selector {
      display: flex; } }
  .c-vehicle-selector__field {
    flex: 1; }
    .c-vehicle-selector__field .select-dropdown {
      width: 100%; }
    @media (min-width: 991px) {
      .c-vehicle-selector__field {
        margin-left: 10px;
        margin-right: 10px; } }

.c-content-header {
  justify-content: space-between;
  align-items: center;
  display: block;
  margin-bottom: 15px;
  flex-wrap: wrap; }
  @media (min-width: 991px) {
    .c-content-header {
      display: flex; } }
  .c-content-header__item--grow {
    flex: 1; }

.results-button-bar {
  margin: 10px 0; }
  .results-button-bar .button {
    flex: 1; }
  @media (min-width: 767px) {
    .results-button-bar {
      display: flex; }
      .results-button-bar .button {
        margin: 0 10px; }
        .results-button-bar .button:first-child {
          margin-left: 0; }
        .results-button-bar .button:last-child {
          margin-right: 0; } }

/**
    Button

    1. This is a legacy class and should be refactored out because it busts specificity
       and doesn't have clear namespacing.
*/
.button {
  background: #E51914;
  color: #fff;
  width: 100%;
  display: block;
  border: 0;
  padding: 15px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.1s ease-in-out;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em; }
  .button:hover {
    background-color: #ee423e; }
  .button:active {
    transform: translateY(1px); }
  .button.black {
    background: #222222; }
    .button.black:hover {
      background-color: #484848; }
  .button--control {
    display: inline-block;
    width: auto;
    height: 35px;
    padding: 5px 10px;
    position: relative;
    left: -5px;
    margin-right: -5px; }
  .button--black {
    background-color: #222222; }
    .button--black:hover {
      background-color: #484848; }
  .button--yellow {
    background-color: #FDD219;
    color: #222222; }
    .button--yellow:hover {
      background-color: #fee165; }
  .button--inactive {
    background-color: #E4E4E4;
    color: #696969; }
    .button--inactive:hover {
      color: white; }
  .button--disabled, .button:disabled {
    background-color: #E4E4E4;
    color: white;
    cursor: not-allowed; }
    .button--disabled:hover, .button:disabled:hover {
      background-color: #E4E4E4;
      color: #696969; }
  .button--small {
    padding: 9px 15px;
    font-size: 13px;
    padding-top: 10px;
    min-width: 80px; }
  .button--inline {
    display: inline-block;
    width: auto; }

.shop-more-button {
  background: #222222;
  color: #fff;
  display: inline-block;
  border: 0;
  padding: 5px 25px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 20px; }

.tpms-product-list {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #E4E4E4;
  border-right: 1px solid #E4E4E4;
  border-top: 1px solid #E4E4E4; }
  .tpms-product-list > * {
    width: 100%; }
  @media (min-width: 1400px) {
    .tpms-product-list > * {
      width: 50%; } }

.tpms-product-summary {
  padding: 20px 10px;
  border-bottom: 1px solid #E4E4E4;
  align-items: flex-start;
  position: relative;
  background: white; }
  @media (min-width: 991px) {
    .tpms-product-summary {
      display: flex; } }
  .tpms-product-summary:nth-child(odd) {
    border-right: 1px solid #E4E4E4; }
  .tpms-product-summary--is-active .tpms-product-summary__caret {
    display: block; }
  .tpms-product-summary__caret {
    display: none;
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #222222 transparent; }
  .tpms-product-summary__content {
    flex: 1;
    overflow: hidden;
    height: 100%;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 991px) {
      .tpms-product-summary__content {
        display: flex; } }
  .tpms-product-summary__price-section {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .tpms-product-summary__price-section * {
      margin: 0; }
  .tpms-product-summary__thumb {
    max-width: 100%; }
    @media (min-width: 991px) {
      .tpms-product-summary__thumb {
        margin-right: 10px;
        max-width: 30%; } }
  .tpms-product-summary__title {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .tpms-product-summary__price {
    font-weight: 500;
    color: #E51914;
    margin-bottom: 0; }
  .tpms-product-summary__quantity-input {
    width: 50px;
    padding: 5px;
    margin-right: 1px;
    margin-left: 5px; }
  .tpms-product-summary__buttons {
    display: flex; }
    .tpms-product-summary__buttons .button {
      margin-top: 0;
      margin-right: 10px;
      flex: 0;
      min-width: 30%; }
      .tpms-product-summary__buttons .button:last-child {
        margin-right: 0;
        flex: 1; }

.delivery-text {
  font-weight: 500; }

.tpms-product-detail {
  width: 100% !important;
  background-color: white;
  align-items: flex-start;
  padding: 30px;
  border-bottom: 1px solid #E4E4E4;
  border-top: 5px solid #222222; }
  @media (min-width: 991px) {
    .tpms-product-detail {
      display: flex; } }
  .tpms-product-detail__image {
    max-width: 100%;
    margin-right: 0; }
    @media (min-width: 991px) {
      .tpms-product-detail__image {
        max-width: 30%;
        margin-right: 30px; } }
  .tpms-product-detail__content {
    flex: 1; }
  .tpms-product-detail__title {
    margin: 0; }
  .tpms-product-detail__section-title {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px; }
  .tpms-product-detail section {
    margin-bottom: 15px; }
    .tpms-product-detail section:last-child {
      margin: 0; }
    .tpms-product-detail section p {
      margin: 0;
      color: #696969;
      font-weight: 500; }

.c-car-info {
  background: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); }
  .c-car-info__logo {
    display: block;
    margin: auto;
    margin-bottom: 15px; }
  .c-car-info__strap {
    border-top: 1px solid #ccc;
    padding: 10px 15px; }
    .c-car-info__strap:first-child {
      border-top: 0; }
    .c-car-info__strap header {
      font-weight: 500;
      color: #999; }
    .c-car-info__strap p {
      margin-bottom: 0;
      font-weight: 500; }

/**
    1. Force width/height to ensure the grid stays inline
*/
.tpms-shop-product__image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  width: 180px;
  height: 180px; }

.tpms-shop-product__name {
  font-weight: 600;
  height: 45px;
  margin-bottom: 5px;
  font-size: 16px;
  overflow: hidden; }

.tpms-shop-product__price {
  margin-bottom: 30px;
  font-size: 16px; }

.tpms-shop-product .button {
  margin: 0;
  margin-bottom: 8px; }
  .tpms-shop-product .button:last-child {
    margin-bottom: 0; }

.tpms-shop-product-detail h3, .tpms-shop-product-detail h4 {
  margin-bottom: 5px; }

.tpms-shop-product-detail__section-title {
  font-size: 16px;
  font-weight: 500; }

.tpms-shop-product-detail__images {
  display: flex;
  flex-direction: row; }

.tpms-shop-product-detail__supp-images {
  display: flex;
  flex-direction: column; }

.tpms-shop-product-detail__supp-image {
  width: 90px;
  margin-bottom: 15px; }

.tpms-shop-product-detail__main-image {
  width: 300px;
  max-width: 100%;
  max-height: 300px;
  margin-right: 15px; }

.numeric-selector {
  margin-left: 10px;
  display: inline-flex;
  align-items: stretch;
  flex-direction: row; }
  .numeric-selector .button {
    padding: 0;
    width: 30px;
    text-align: center;
    border: 0; }
    .numeric-selector .button:active {
      transform: none !important; }
  .numeric-selector input {
    margin: 0;
    border-left: 0;
    border-right: 0;
    width: 35px;
    text-align: center; }

/**
  Modal Dialog

  The dialog is shared between product details and generic messages so
  some overriding styles are applied with ridiculous selectors
*/
.modal {
  display: block;
  overflow: auto !important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: auto;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden; }
  .modal.modal--shown {
    opacity: 1;
    visibility: visible; }

.modal__loader {
  display: none; }

.modal--loading .modal__loader {
  display: block; }

.modal--loading .modal__content {
  display: none; }

.modal__dialog {
  padding: 15px;
  margin: 30px;
  background: #fff;
  max-width: 800px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .modal--shown .modal__dialog {
    transform: translateY(0);
    transition-delay: 0.3s;
    opacity: 1; }
  @media (min-width: 800px) {
    .modal__dialog {
      margin: 30px auto;
      padding: 40px 60px 60px 60px; } }

.modal__title {
  font-size: 40px; }

.modal__exit {
  position: absolute;
  right: -20px;
  top: -20px; }

.modal__dialog > .button {
  padding: 10px 25px;
  background: #1c1c1c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0;
  margin: 10px 0;
  font-size: 1.2em; }

.modal__dialog > .button.confirm {
  background: #b40000; }

.modal__dialog .product-details-view {
  display: block; }

/**
  Product details modal

  Derives from the modal control and overrides styles on the product-details 
  component, which sits inside the modal.

  1. The product-details component is hidden by default so this needs to be 
     overriden in the modal
*/
.modal--product-details .modal__dialog {
  padding: 0; }

.modal--product-details .product-details-view {
  display: block; }

.modal--product-details .product-details-view .product-details {
  border-top: none;
  margin: 0 -15px; }

.modal--product-details .product-details-view .product-details .description {
  overflow-x: auto;
  padding-right: 10px; }

.modal--product-details .product-details-view .product-details table {
  width: 100%; }

.modal--product-details .product-details-view .product-details .corner-ribbon {
  top: 40px;
  left: -75px;
  width: 300px; }

.c-table {
  width: 100%; }
  @media (max-width: 767px) {
    .c-table {
      font-size: 0.7em; } }
  .c-table th {
    background: #E4E4E4;
    padding: 15px 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #696969;
    letter-spacing: 0;
    vertical-align: middle;
    line-height: 1; }
  .c-table td {
    background: #F8F9FB;
    border: 1px solid #E4E4E4;
    padding: 10px; }
    .c-table td span {
      display: inline-block;
      font-size: 1.2em;
      line-height: 2em; }
    .c-table td img {
      width: 100%;
      max-width: 650px; }
    .c-table td .item-type {
      display: block;
      font-weight: 500;
      letter-spacing: 0;
      color: #E51914; }
      .c-table td .item-type.dealer-support-item {
        color: #FB6507; }
        .c-table td .item-type.dealer-support-item.landsail {
          color: #005BAA; }
        .c-table td .item-type.dealer-support-item.evergreen {
          color: #96BE0D; }
    .c-table td.no-items {
      text-align: center; }
    .c-table td.description {
      text-transform: uppercase; }
    .c-table td.options {
      vertical-align: top; }
      .c-table td.options span {
        margin-right: 10px; }
    .c-table td.points {
      font-weight: 500;
      letter-spacing: 0;
      font-size: 1.3em;
      text-align: center; }
      .c-table td.points span {
        font-size: 0.7em;
        color: #666;
        display: block;
        margin-top: -5px;
        font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
        font-weight: 300; }
    .c-table td .links {
      margin-top: 20px; }
      .c-table td .links .update-item.highlight {
        -webkit-animation: button-flash 2s infinite linear;
        animation: button-flash 2s infinite linear; }

.c-table--clear {
  width: auto; }
  .c-table--clear td:first-child {
    font-weight: 600; }
  .c-table--clear td,
  .c-table--clear tr {
    background: none !important;
    border: 0; }
  .c-table--clear td {
    padding-left: 0;
    padding-top: 0;
    padding-right: 30px;
    padding-bottom: 5px; }

.c-checkout-total-group {
  border-bottom: 1px solid #999;
  margin-bottom: 15px; }

.c-checkout-total-group--title {
  text-align: right;
  font-weight: 400;
  font-size: 14px; }

.c-checkout-total {
  zoom: 1;
  margin-bottom: 10px; }
  .c-checkout-total:before, .c-checkout-total:after {
    content: "";
    display: table; }
  .c-checkout-total:after {
    clear: both; }
  .c-checkout-total--strong {
    font-weight: 600;
    font-size: 16px; }

.c-checkout-total--title {
  float: left; }

.c-checkout-total--value {
  float: right; }

.c-control-label {
  display: block; }

.paging {
  display: flex;
  justify-content: center; }

.paging__previous, .paging__next {
  display: flex;
  align-items: center; }
  .paging__previous > a, .paging__next > a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; }
  .paging__previous > span, .paging__next > span {
    padding: 0 20px;
    font-weight: 500;
    font-size: 16px; }

.paging__previous {
  border-right: 1px solid #E4E4E4; }
  .paging__previous .fa {
    position: relative;
    left: -1px;
    top: 1px; }

.paging__next .fa {
  position: relative;
  left: 1px;
  top: 1px; }

.summary-block {
  padding: 10px 0;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 255px; }
  @media only screen and (max-width: 767px) {
    .summary-block {
      font-size: 0.9em;
      min-width: 280px; } }
  .summary-block__subblock {
    padding: 15px;
    background-color: #E4E4E4;
    flex: 1; }
    .summary-block__subblock--slim {
      padding: 7.5px 15px;
      flex: 0 1 auto; }
  .summary-block__title {
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex: 0 1 auto; }
  .summary-block__value {
    font-weight: 500;
    letter-spacing: 0;
    display: block;
    font-size: 150%;
    white-space: nowrap;
    text-overflow: ellipsis; }
    .summary-block__value--large {
      font-size: 48px;
      font-weight: 600; }
  .summary-block.accelerator-bonus {
    cursor: default; }
  .summary-block > .help-icon {
    top: 16px; }

.summary-block__title {
  padding: 10px 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-left: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .reward-points .summary-block__title {
    background-image: url("content/images/reward-icon.png");
    background-repeat: no-repeat;
    background-position: 20px center; }
  .bdf .summary-block__title {
    background-image: url("content/images/bdf-icon.png");
    background-repeat: no-repeat;
    background-position: 20px center; }
  .accelerator-bonus .summary-block__title {
    background-image: url("content/images/acc-bonus-icon.png");
    background-repeat: no-repeat;
    background-position: 20px center; }
  .cc .summary-block__title {
    background-image: url("content/images/cc-icon.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 18px 8px; }
  .dealer-support-points.davanti .summary-block__title {
    background-image: url("content/images/dsp-icon-davanti-white.png");
    background-repeat: no-repeat;
    background-position: 20px center; }
  .dealer-support-points.evergreen .summary-block__title {
    background-image: url("content/images/dsp-icon-evergreen-white.png");
    background-repeat: no-repeat;
    background-position: 20px center; }
  .dealer-support-points.landsail .summary-block__title {
    background-image: url("content/images/dsp-icon-landsail-white.png");
    background-repeat: no-repeat;
    background-position: 20px center; }

.accelerator-bonus .summary-block__subblock {
  background-color: #363636; }
  .accelerator-bonus .summary-block__subblock--dark {
    background-color: #292929; }
  .accelerator-bonus .summary-block__subblock--darker {
    background-color: #1d1d1d; }
  .accelerator-bonus .summary-block__subblock--darkest {
    background-color: #101010; }

.reward-points.active .summary-block__subblock, .reward-points:hover .summary-block__subblock {
  background-color: #E51914; }
  .reward-points.active .summary-block__subblock--dark, .reward-points:hover .summary-block__subblock--dark {
    background-color: #ce1612; }
  .reward-points.active .summary-block__subblock--darker, .reward-points:hover .summary-block__subblock--darker {
    background-color: #b61410; }

.bdf.active .summary-block__subblock, .bdf:hover .summary-block__subblock {
  background-color: #9f110e; }
  .bdf.active .summary-block__subblock--dark, .bdf:hover .summary-block__subblock--dark {
    background-color: #870f0c; }
  .bdf.active .summary-block__subblock--darker, .bdf:hover .summary-block__subblock--darker {
    background-color: #700c0a; }

.dealer-support-points.davanti.active .summary-block__subblock, .dealer-support-points.davanti:hover .summary-block__subblock {
  background-color: #FB6507; }
  .dealer-support-points.davanti.active .summary-block__subblock--dark, .dealer-support-points.davanti:hover .summary-block__subblock--dark {
    background-color: #e55a04; }
  .dealer-support-points.davanti.active .summary-block__subblock--darker, .dealer-support-points.davanti:hover .summary-block__subblock--darker {
    background-color: #cc5103; }

.dealer-support-points.evergreen.active .summary-block__subblock, .dealer-support-points.evergreen:hover .summary-block__subblock {
  background-color: #96BE0D; }
  .dealer-support-points.evergreen.active .summary-block__subblock--dark, .dealer-support-points.evergreen:hover .summary-block__subblock--dark {
    background-color: #83a60b; }
  .dealer-support-points.evergreen.active .summary-block__subblock--darker, .dealer-support-points.evergreen:hover .summary-block__subblock--darker {
    background-color: #708e0a; }

.dealer-support-points.landsail.active .summary-block__subblock, .dealer-support-points.landsail:hover .summary-block__subblock {
  background-color: #005BAA; }
  .dealer-support-points.landsail.active .summary-block__subblock--dark, .dealer-support-points.landsail:hover .summary-block__subblock--dark {
    background-color: #004d91; }
  .dealer-support-points.landsail.active .summary-block__subblock--darker, .dealer-support-points.landsail:hover .summary-block__subblock--darker {
    background-color: #004077; }

.cc.active .summary-block__subblock, .cc:hover .summary-block__subblock {
  background-color: #600000; }
  .cc.active .summary-block__subblock--dark, .cc:hover .summary-block__subblock--dark {
    background-color: #470000; }
  .cc.active .summary-block__subblock--darker, .cc:hover .summary-block__subblock--darker {
    background-color: #2d0000; }

.expiry-summary-block {
  margin-top: -35px;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: -15px; }

.c-footer .advert {
  text-align: center; }
  .c-footer .advert img {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 0; }

.c-footer__products {
  display: flex;
  flex-wrap: wrap;
  padding: 10px; }

.c-footer-product {
  display: flex;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  max-height: 130px; }
  @media only screen and (min-width: 767px) {
    .c-footer-product {
      flex: 1 0 50%;
      width: 50%; } }

@media only screen and (min-width: 1199px) {
  .c-footer--full-width .c-footer-product {
    flex: 1 0 33%;
    width: 33%; } }

.c-footer-product__image-wrapper {
  flex: 0 0 30%;
  background: white;
  border: 4px solid white;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  overflow: hidden; }

.c-footer-product__image {
  max-width: 100%; }

.c-footer-product__details {
  flex: 1;
  padding-left: 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column; }

.c-footer-product__title {
  height: 34px;
  overflow: hidden;
  line-height: 1.2;
  font-weight: 500;
  color: #696969;
  margin-top: 5px; }

.c-footer-product__points {
  font-weight: 700;
  background-color: #E51914;
  color: white;
  padding: 2px 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13px; }

.c-footer-product__target {
  color: #E51914;
  font-weight: 500;
  display: flex;
  align-items: center; }

.c-footer-product__buttons {
  display: flex; }
  .c-footer-product__buttons button {
    margin-right: 7.5px; }
  .c-footer-product__buttons button:first-child {
    flex: 0; }
  .c-footer-product__buttons button:last-child {
    flex: 1;
    margin-right: 0; }

.c-terms-section {
  width: 800px;
  max-width: 100%; }
  .c-terms-section h2 {
    font-size: 22px; }
  .c-terms-section h3 {
    font-size: 18px; }

/**
    1. Force width/height to ensure the grid stays inline
*/
.shop-product__image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  max-width: 100%; }

.shop-product__name {
  font-weight: 600;
  height: 45px;
  margin-bottom: 5px;
  font-size: 16px;
  overflow: hidden; }

.shop-product__price {
  margin-bottom: 30px;
  font-size: 16px; }

.shop-product .button {
  margin: 0;
  margin-bottom: 8px; }
  .shop-product .button:last-child {
    margin-bottom: 0; }

@media (min-width: 480px) {
  .shop-product-detail {
    float: left; } }

.top-header {
  height: 88px;
  width: 100%;
  border-bottom: 1px solid #E4E4E4;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 1199px) {
    .top-header {
      height: 48px; } }

.top-header__section {
  display: flex; }

.top-header__account-menu {
  position: absolute;
  right: 15px;
  top: calc(100% + 15px); }

.info-block {
  height: 100%;
  display: inline-block;
  line-height: 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row; }
  @media only screen and (max-width: 767px) {
    .info-block--hide-mobile {
      display: none; } }
  .info-block__text {
    font-weight: 500;
    color: white;
    margin: 0;
    margin-left: 10px; }
  .info-block__icon {
    fill: white; }
  .info-block--account {
    font-size: 20px;
    background-color: #E4E4E4;
    cursor: pointer; }
  .info-block.rewards-total {
    background: #E51914;
    padding: 35px 30px 35px 55px;
    background-image: url("content/images/reward-icon.png");
    background-repeat: no-repeat;
    background-position: 20px center;
    color: #fff; }
    @media only screen and (max-width: 1199px) {
      .info-block.rewards-total {
        padding: 15px 30px 15px 55px; } }
  .info-block.bdf-total {
    background: #b61410;
    padding: 35px 30px 35px 55px;
    background-image: url("content/images/bdf-icon.png");
    background-repeat: no-repeat;
    background-position: 20px center;
    color: #fff; }
    @media only screen and (max-width: 1199px) {
      .info-block.bdf-total {
        padding: 15px 30px 15px 55px; } }
  .info-block--cc {
    background: #600000; }
  .info-block.dealer-support-total {
    color: #fff;
    padding: 35px 30px 35px 55px; }
    @media only screen and (max-width: 1199px) {
      .info-block.dealer-support-total {
        padding: 15px 30px 15px 55px; } }
    .info-block.dealer-support-total.davanti {
      background: #FB6507;
      background-image: url("content/images/dsp-icon-davanti-white.png");
      background-repeat: no-repeat;
      background-position: 20px center; }
    .info-block.dealer-support-total.evergreen {
      background-color: #96BE0D;
      background-image: url("content/images/dsp-icon-evergreen-white.png");
      background-repeat: no-repeat;
      background-position: 20px center; }
    .info-block.dealer-support-total.landsail {
      background-color: #005BAA;
      background-image: url("content/images/dsp-icon-landsail-white.png");
      background-repeat: no-repeat;
      background-position: 20px center; }
  .info-block.checkout-total {
    background-image: url("content/images/basket-icon.png");
    background-repeat: no-repeat;
    background-position: 20px center;
    padding: 35px 30px 35px 55px; }
    @media only screen and (max-width: 1199px) {
      .info-block.checkout-total {
        padding: 15px 30px 15px 55px; } }
    .info-block.checkout-total .value {
      font-weight: 500;
      letter-spacing: 0;
      padding: 0 5px 0 0; }
      .info-block.checkout-total .value > span {
        padding: 0 0 0 2px; }
    .info-block.checkout-total .items {
      color: #fff;
      background: #E51914;
      padding: 2px 10px;
      -webkit-border-radius: 10px 10px 10px 10px;
      -moz-border-radius: 10px 10px 10px 10px;
      border-radius: 10px 10px 10px 10px;
      font-weight: 500;
      letter-spacing: 0; }

.logo {
  width: 240px;
  display: flex;
  align-items: center;
  padding: 0 15px; }
  .logo img {
    max-width: 100%; }
  @media only screen and (max-width: 1199px) {
    .logo {
      padding: 5px 5px;
      width: auto; }
      .logo img {
        height: 35px;
        width: auto; } }
  @media only screen and (max-width: 480px) {
    .logo {
      display: none; } }

.navbar-toggle {
  display: block;
  margin-right: 0; }
  .navbar-toggle .icon-bar {
    background: #222222;
    transition: all 0.3s; }
  .navbar-toggle.open .icon-bar {
    height: 3px; }
    .navbar-toggle.open .icon-bar:first-child {
      margin-top: 5px;
      transform: rotate(45deg);
      transform-origin: center; }
    .navbar-toggle.open .icon-bar:nth-child(2) {
      display: none; }
    .navbar-toggle.open .icon-bar:last-child {
      margin-top: -3px;
      transform: rotate(-45deg);
      transform-origin: center; }

.dialog {
  background-color: white; }

.dialog--grey {
  background-color: #F1F1F1; }
  .dialog--grey .dialog__header {
    background-color: #b1b1b1; }

.dialog__header {
  background-color: #E4E4E4;
  font-weight: 500;
  padding: 10px 15px; }
  .dialog__header.dialog__header--flush {
    padding: 0; }

.dialog--block-heading {
  margin: 0;
  padding: 10px 15px;
  color: white;
  background-color: #363636;
  display: inline-block; }

.dialog--shadowed {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3); }

.dialog--fade {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, -20px, 0); }

.dialog--fade.dialog--show {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0); }

.icon-link {
  color: #696969;
  display: flex;
  align-items: center; }

.icon-link__icon {
  font-size: 18px;
  margin-right: 10px; }

.icon-link__text {
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.icon-link:hover .icon-link__text {
  color: #E51914; }

.c-card {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  background-color: white;
  display: block; }
  .c-card:hover .c-card__image {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0.5; }

.c-card__image-container {
  overflow: hidden; }

.c-card__image {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block; }

.c-card__BDFimage {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  max-height: 300px;
  max-width: 300px;
  display: block; }

.c-card__label {
  text-align: center;
  padding: 10px;
  color: #222222;
  font-weight: 500;
  margin: 0;
  font-size: 16px; }

.control {
  padding: 5px 10px;
  font-weight: 500;
  border: 1px solid #E4E4E4;
  height: 35px;
  background: #fff; }
  .control > option {
    font-weight: 500;
    padding: 4px 5px; }

.form-group--horizontal {
  display: inline; }
  @media (min-width: 480px) {
    .form-group--horizontal + .form-group--horizontal {
      margin-left: 15px; } }
  .form-group--horizontal label {
    margin-right: 7.5px;
    margin-bottom: 0; }
    .form-group--horizontal label .control {
      margin-left: 7.5px; }

.toaster {
  position: fixed;
  width: 200px;
  height: 150px;
  background: white;
  right: 30px;
  bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transform: scaleY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 50% 100%; }

.toaster--active {
  transform: scaleY(1); }

.c-highlight-block {
  font-size: 16px;
  background: #FDD219;
  padding: 5px 10px;
  font-weight: 600;
  text-transform: uppercase; }

.text-positive {
  color: #71AA3F; }

.text-negative {
  color: #E20700; }

.text-red {
  color: #E51914; }

.u-text-center {
  text-align: center; }

.u-text-fade {
  opacity: 0.7; }

.u-flex {
  display: flex; }

.u-flex--spread {
  justify-content: space-between; }

.u-flex--wrap {
  flex-wrap: wrap; }

.u-flex--align-end {
  align-items: flex-end; }

.u-overflow-auto {
  overflow: auto; }
