/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.form-input {
  position: relative;
  display: block; }
  .form-input.form-input--valid textarea,
  .form-input.form-input--valid input {
    border-color: #41871b;
    outline-color: #41871b; }
  .form-input.form-input--valid .radio-button:before,
  .form-input.form-input--valid .checkbox:before {
    border-color: #41871b;
    outline-color: #41871b; }
  .form-input.form-input--invalid textarea,
  .form-input.form-input--invalid input {
    border-color: #e60000;
    outline-color: #e60000; }
  .form-input.form-input--invalid .radio-button:before,
  .form-input.form-input--invalid .checkbox:before {
    border-color: #e60000; }

.form-input-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 28px;
  padding-top: 4px;
  font-size: 14px; }

.form-input-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px; }

.tooltip-wrapper {
  margin-left: 5px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

.info-icon {
  display: block;
  right: 0; }
  .info-icon, .info-icon svg {
    width: 23px;
    height: 23px; }

@media (min-width: 768px) {
  .form-field--no-label {
    padding-top: 25.56px; } }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.form-input {
  position: relative; }
  .form-input .valid {
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1; }
    .form-input .valid svg {
      fill: #41871b; }
  .form-input .input {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -moz-appearance: none;
         appearance: none;
    font-family: "Vodafone", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 20px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #999999;
    border-radius: 0;
    outline: 1px solid transparent;
    outline-offset: 0;
    -webkit-border-radius: 0;
    -webkit-box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    padding-right: 48px; }
    .form-input .input:focus {
      border-color: #00b0ca;
      outline: 1px solid;
      outline-color: #00b0ca; }
    .form-input .input[type="password"] {
      font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
      letter-spacing: 2px;
      font-size: 22px; }
      .form-input .input[type="password"]::-webkit-input-placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
      .form-input .input[type="password"]::-moz-placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
      .form-input .input[type="password"]:-ms-input-placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
      .form-input .input[type="password"]::-ms-input-placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
      .form-input .input[type="password"]::placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
      .form-input .input[type="password"]:-ms-input-placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
      .form-input .input[type="password"]::-ms-input-placeholder {
        font-family: "Vodafone", Arial, Helvetica, sans-serif;
        font-size: 20px;
        letter-spacing: normal; }
    .form-input .input.disabled, .form-input .input:disabled, .form-input .input:disabled[disabled] {
      color: #666666;
      opacity: .5;
      cursor: default; }
    .form-input .input:-moz-read-only {
      cursor: default; }
    .form-input .input:read-only {
      cursor: default; }
    .form-input .input::-ms-clear, .form-input .input::-ms-reveal {
      display: none;
      width: 0;
      height: 0; }
    .form-input .input::-webkit-search-decoration, .form-input .input::-webkit-search-cancel-button, .form-input .input::-webkit-search-results-button, .form-input .input::-webkit-search-results-decoration {
      display: none; }
    .form-input .input::-webkit-inner-spin-button, .form-input .input::-webkit-calendar-picker-indicator, .form-input .input::-webkit-clear-button {
      display: none;
      -webkit-appearance: none; }
    .form-input .input[type=number] {
      -moz-appearance: textfield; }

::-webkit-input-placeholder {
  color: #666666; }

::-moz-placeholder {
  color: #666666; }

:-ms-input-placeholder {
  color: #666666 !important; }

:-moz-placeholder {
  color: #666666; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.error-message {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #e60000; }
  .error-message .em-icon {
    position: relative;
    margin-right: 4px;
    top: -2px;
    width: 23px;
    height: 23px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .error-message .em-icon svg {
      height: 23px;
      width: 23px;
      fill: #e60000; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.radio-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer; }
  .radio-button:before {
    content: "";
    position: relative;
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #666666;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    border-radius: 100%; }
  .radio-button:after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    top: 7px;
    left: 5px;
    opacity: 0;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background-color: #666666;
    border-radius: 100%; }
  .radio-button input {
    opacity: 0;
    position: absolute; }
  .radio-button .radio-button-label {
    margin-left: 8px;
    font-size: 18px; }
  .radio-button.radio-button--checked:after {
    opacity: 1; }
  .radio-button.radio-button--disabled {
    background-color: #a8a8a8;
    opacity: .65;
    pointer-events: none; }
  .radio-button.radio-button--focused:before {
    border-color: #00b0ca;
    border-width: 2px; }

.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .radio-group .radio-button {
    margin-right: 16px; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer; }
  .checkbox svg {
    fill: #000000;
    height: 20px;
    width: 20px;
    z-index: 1;
    display: none;
    position: absolute;
    top: 0px; }
  .checkbox:before {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #666666 !important;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .checkbox input {
    display: none; }
  .checkbox .checkbox-label {
    margin-left: 30px;
    font-size: 16px;
    line-height: 21px;
    overflow-wrap: anywhere;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .checkbox .checkbox-label a {
      text-decoration: underline; }
  .checkbox .checkbox-label-after {
    margin-left: 8px; }
  .checkbox.checkbox--checked svg {
    display: block; }
  .checkbox.checkbox--disabled {
    opacity: .65;
    pointer-events: none; }
    .checkbox.checkbox--disabled:before {
      background-color: #a8a8a8; }
  .checkbox.checkbox--large:before {
    top: 0;
    width: 34px;
    height: 34px; }
  .checkbox.checkbox--large:after {
    left: 8px;
    top: 11px;
    font-size: 14px; }
  .checkbox.checkbox--large .checkbox-label {
    margin-top: .4em; }
  .checkbox.checkbox--small-label .checkbox-label {
    font-size: 14px;
    margin-top: 3px; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.form-text-area textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  -moz-appearance: none;
       appearance: none;
  font-family: "Vodafone", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 20px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #999999;
  border-radius: 0;
  outline: 1px solid transparent;
  outline-offset: 0;
  -webkit-border-radius: 0;
  -webkit-box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 96px;
  padding: 14px 20px; }
  .form-text-area textarea:focus {
    border-color: #00b0ca;
    outline: 1px solid;
    outline-color: #00b0ca; }

.form-text-area .vf-counter {
  float: right;
  margin: 4px 0 0 10px; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.vf-select {
  position: relative;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); }
  .vf-select .vf-select__menu {
    position: absolute;
    width: 100%;
    background: #ffffff;
    z-index: 20;
    margin-top: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    outline: #999999 solid 1px;
    outline-offset: -1px; }
  .vf-select .vf-select__menu-list {
    padding: 0;
    overflow-y: auto;
    max-height: 231px; }
  .vf-select .vf-select__option {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    height: 42px;
    width: 100%;
    display: block;
    border-color: #e5e5e5;
    border-width: 0.5px 1px;
    border-style: solid;
    overflow: hidden; }
  .vf-select .vf-select__option--is-focused {
    z-index: 2;
    color: #333333;
    outline: 2px solid #00b0ca;
    outline-offset: -2px;
    cursor: pointer;
    background-color: #ffffff; }
  .vf-select .vf-select__control {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -moz-appearance: none;
         appearance: none;
    font-family: "Vodafone", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 20px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #999999;
    border-radius: 0;
    outline: 1px solid transparent;
    outline-offset: 0;
    -webkit-border-radius: 0;
    -webkit-box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 18px;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 20px 14px 20px; }
    .vf-select .vf-select__control:focus {
      border-color: #00b0ca;
      outline: 1px solid;
      outline-color: #00b0ca; }
    .vf-select .vf-select__control:hover {
      cursor: pointer; }
  .vf-select .vf-select__value-container {
    height: 24px;
    padding: 0; }
  .vf-select .vf-select__control--is-focused {
    border-color: #00b0ca;
    outline: 1px solid;
    outline-color: #00b0ca; }
    .vf-select .vf-select__control--is-focused.vf-select__control--menu-is-open {
      border: 1px solid #999999;
      border-radius: 0;
      outline: 1px solid transparent;
      outline-offset: 0;
      -webkit-border-radius: 0; }
  .vf-select .vf-select__placeholder {
    color: #333333;
    margin: 0;
    padding: 0; }
  .vf-select .vf-select__indicators {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .vf-select .vf-select__indicator {
    padding: 0; }
    .vf-select .vf-select__indicator svg {
      color: #666666; }
  .vf-select .vf-select__clear-indicator {
    margin-top: 2px; }
  .vf-select .vf-select__indicator-separator {
    background-color: #cccccc;
    margin: 0 10px; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.vf-autosuggest {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */ }
  .vf-autosuggest .react-autosuggest__container {
    position: relative; }
  .vf-autosuggest .react-autosuggest__input {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -moz-appearance: none;
         appearance: none;
    font-family: "Vodafone", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 20px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #999999;
    border-radius: 0;
    outline: 1px solid transparent;
    outline-offset: 0;
    -webkit-border-radius: 0;
    -webkit-box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: inset 1px 3px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
    .vf-autosuggest .react-autosuggest__input:focus {
      border-color: #00b0ca;
      outline: 1px solid;
      outline-color: #00b0ca; }
    .vf-autosuggest .react-autosuggest__input::-ms-clear {
      display: none; }
  .vf-autosuggest .react-autosuggest__suggestions-container {
    position: absolute;
    width: 100%;
    background: #ffffff;
    z-index: 20;
    margin-top: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    outline: #999999 solid 1px;
    outline-offset: -1px;
    overflow-y: auto;
    max-height: 231px;
    display: none;
    /*
     * aligns menu and field
     */
    margin-left: -1px;
    width: calc(100% + 2px); }
    .vf-autosuggest .react-autosuggest__suggestions-container.react-autosuggest__suggestions-container--open {
      display: block; }
  .vf-autosuggest .react-autosuggest__suggestions-list {
    padding: 0;
    margin: 0; }
  .vf-autosuggest .react-autosuggest__suggestion {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    height: 42px;
    width: 100%;
    display: block;
    border-color: #e5e5e5;
    border-width: 0.5px 1px;
    border-style: solid;
    overflow: hidden; }
  .vf-autosuggest .react-autosuggest__suggestion--highlighted {
    z-index: 2;
    color: #333333;
    outline: 2px solid #00b0ca;
    outline-offset: -2px;
    cursor: pointer;
    background-color: #ffffff; }
  .vf-autosuggest .valid {
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1; }
    .vf-autosuggest .valid svg {
      fill: #41871b; }
  .vf-autosuggest input::-webkit-outer-spin-button,
  .vf-autosuggest input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .vf-autosuggest input[type=number] {
    -moz-appearance: textfield; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.form-password {
  position: relative; }
  .form-password.form-password--yellow .input {
    border-color: #eb9700;
    outline-color: #eb9700; }
  .form-password .input {
    padding-right: 48px; }
  .form-password .toggle-field-type {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
    background: transparent;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    padding: 12px;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out; }
    .form-password .toggle-field-type:focus, .form-password .toggle-field-type:active {
      outline: none; }
    .form-password .toggle-field-type.toggle-field-type--visible {
      opacity: 1; }
    .form-password .toggle-field-type svg {
      display: block;
      fill: #333333; }

.password-strength {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .password-strength .ps-icon {
    margin-right: 10px; }
    .password-strength .ps-icon svg {
      vertical-align: baseline; }
  .password-strength .ps-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 10px 0 14px; }
    .password-strength .ps-content .ps-criteria-text {
      font-size: 14px;
      line-height: 20px;
      text-align: right; }
    .password-strength .ps-content .ps-indicator {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      background: #cccccc;
      height: 5px;
      width: 100%;
      margin-top: 3px; }
      .password-strength .ps-content .ps-indicator .ps-indicator-bar {
        -webkit-transition-property: background-color, width;
        -o-transition-property: background-color, width;
        transition-property: background-color, width;
        -webkit-transition-duration: .3s;
             -o-transition-duration: .3s;
                transition-duration: .3s;
        -webkit-transition-timing-function: ease-in-out;
             -o-transition-timing-function: ease-in-out;
                transition-timing-function: ease-in-out; }
      .password-strength .ps-content .ps-indicator.ps-indicator--red .ps-indicator-bar {
        background-color: #e60000; }
      .password-strength .ps-content .ps-indicator.ps-indicator--yellow .ps-indicator-bar {
        background-color: #eb9700; }
      .password-strength .ps-content .ps-indicator.ps-indicator--green .ps-indicator-bar {
        background-color: #41871b; }

.password-hint-text {
  font-size: 14px;
  line-height: 20px; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.vf-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 0; }
  .vf-label .label-after {
    margin-left: 5px; }
  .vf-label .mandatory {
    color: #e60000;
    margin-left: 4px; }

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0; }

[data-tippy-root] {
  max-width: calc(100vw - 10px); }

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform,visibility,opacity; }

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0; }

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top; }

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0; }

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom; }

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0; }

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left; }

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0; }

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right; }

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11); }

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333; }

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid; }

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1; }

.tippy-box[data-theme~=light-border] {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 8, 16, 0.15);
  color: #333;
  box-shadow: 0 4px 14px -2px rgba(0, 8, 16, 0.08); }

.tippy-box[data-theme~=light-border] > .tippy-backdrop {
  background-color: #fff; }

.tippy-box[data-theme~=light-border] > .tippy-arrow:after, .tippy-box[data-theme~=light-border] > .tippy-svg-arrow:after {
  content: "";
  position: absolute;
  z-index: -1; }

.tippy-box[data-theme~=light-border] > .tippy-arrow:after {
  border-color: transparent;
  border-style: solid; }

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-arrow:before {
  border-top-color: #fff; }

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-arrow:after {
  border-top-color: rgba(0, 8, 16, 0.2);
  border-width: 7px 7px 0;
  top: 17px;
  left: 1px; }

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-svg-arrow > svg {
  top: 16px; }

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-svg-arrow:after {
  top: 17px; }

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-arrow:before {
  border-bottom-color: #fff;
  bottom: 16px; }

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-arrow:after {
  border-bottom-color: rgba(0, 8, 16, 0.2);
  border-width: 0 7px 7px;
  bottom: 17px;
  left: 1px; }

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-svg-arrow > svg {
  bottom: 16px; }

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-svg-arrow:after {
  bottom: 17px; }

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-arrow:before {
  border-left-color: #fff; }

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-arrow:after {
  border-left-color: rgba(0, 8, 16, 0.2);
  border-width: 7px 0 7px 7px;
  left: 17px;
  top: 1px; }

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-svg-arrow > svg {
  left: 11px; }

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-svg-arrow:after {
  left: 12px; }

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-arrow:before {
  border-right-color: #fff;
  right: 16px; }

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-arrow:after {
  border-width: 7px 7px 7px 0;
  right: 17px;
  top: 1px;
  border-right-color: rgba(0, 8, 16, 0.2); }

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-svg-arrow > svg {
  right: 11px; }

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-svg-arrow:after {
  right: 12px; }

.tippy-box[data-theme~=light-border] > .tippy-svg-arrow {
  fill: #fff; }

.tippy-box[data-theme~=light-border] > .tippy-svg-arrow:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);
  background-size: 16px 6px;
  width: 16px;
  height: 6px; }

div.tippy-box[data-theme~=light-border] {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  color: #333; }
  div.tippy-box[data-theme~=light-border] .tippy-arrow:after {
    border-top-color: rgba(0, 8, 16, 0.05) !important; }

div.tippy-box {
  -webkit-transform: translate(10px, 0px);
      -ms-transform: translate(10px, 0px);
          transform: translate(10px, 0px);
  max-width: 280px; }
  div.tippy-box p {
    line-height: 16px;
    font-size: 14px;
    margin-bottom: 10px; }
    div.tippy-box p:last-child {
      margin-bottom: 0; }
  div.tippy-box .tippy-arrow {
    left: auto !important;
    right: 14px !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    bottom: 0px; }
  div.tippy-box .tippy-content {
    padding: 10px; }

/**
 * Returns a colour key from the global color palettes
 *
 * @var $palette: The palettes name
 * @var $tone: The palettes color tone
 */
.button {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: visible;
  vertical-align: middle;
  margin: 0;
  padding: 7px 11px 7px 11px;
  background-image: none;
  outline: 0;
  font-size: 20px;
  font-weight: 400;
  font-family: "Vodafone", Arial, Helvetica, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  text-shadow: none;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  background-color: #e60000;
  color: #ffffff;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
  .button:hover {
    background-color: #990000;
    color: #ffffff;
    text-decoration: none; }
  .button:visited {
    color: #ffffff;
    text-decoration: none;
    outline: none; }
  .button.disabled, .button:disabled, .button:disabled[disabled] {
    background-color: #cccccc;
    color: #ffffff;
    cursor: default;
    pointer-events: none; }
  @media (min-width: 600px) {
    .button {
      width: auto; } }
  .button svg {
    fill: #ffffff;
    width: 32px;
    height: 32px;
    margin-right: 8px; }

.button--secondary {
  background: #ffffff;
  border-color: #999999;
  color: #666666; }
  .button--secondary:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333; }
    .button--secondary:hover svg {
      fill: #333333; }
  .button--secondary.disabled, .button--secondary:disabled, .button--secondary:disabled[disabled] {
    background-color: #000000;
    color: #ffffff;
    cursor: default;
    pointer-events: none;
    opacity: .15; }
  .button--secondary svg {
    fill: #666666; }

.button--tertiary {
  background-color: #666666;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #ffffff; }
  .button--tertiary:hover {
    background-color: #333333; }
  .button--tertiary.disabled, .button--tertiary:disabled, .button--tertiary:disabled[disabled] {
    background-color: #000000;
    color: #ffffff;
    cursor: default;
    pointer-events: none;
    opacity: .15; }
  .button--tertiary svg {
    fill: #ffffff; }

.button--full-width {
  width: 100%; }

