.pristine-error {
  color: #cc0900 !important;
  margin-top: 0 !important;
}

.has-danger input, .has-danger textarea {
  border-color: #cc0900 !important;
}

/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}
.modal-image .tingle-modal-box {
  width: auto;
  max-width: 1264px;
}

.tingle-modal-box__content {
  padding: 2em;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal-box__content {
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #d25e0f;
    box-shadow: none;
    color: #fff;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}
@supports (-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px)) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
  }
  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}
/* animations
-------------------------------------------------------------- */
@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Custom
-------------------------------------------------------------- */
.tingle-modal-box--wide .tingle-modal-box {
  max-width: 60em;
  width: auto;
}
.tingle-modal-box--wide .tingle-modal-box__content {
  padding: 1em;
}
.tingle-modal-box--wide embed {
  width: 80vw;
  max-width: 58em;
  height: 57vw;
}
@media (min-width: ) {
  .tingle-modal-box--wide embed {
    height: 90vh;
  }
}

.tingle-modal-box__content form button::before {
  background-color: #d25e0f;
}
.tingle-modal-box__content form button:hover {
  color: #fff;
}

.tns-outer {
  padding: 0 !important;
  position: relative;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel.tns-carousel > .tns-item {
  margin-right: -100%;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}
.tns-t-ct::after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

.tns-controls {
  text-align: center;
}
.tns-controls button {
  padding: 0;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background-repeat: no-repeat;
  width: 28px;
  height: 50px;
  background-size: 100%;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: 1em;
}
.tns-controls button:hover {
  opacity: 0.64;
}
.tns-controls button:first-child {
  background-image: url(../img/arrow-prev.png);
}
.tns-controls button:last-child {
  background-image: url(../img/arrow-next.png);
}
@media (min-width: 40rem) {
  .tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -25px;
  }
  .tns-controls button {
    position: absolute;
    margin: 0;
    width: 28px;
    height: 50px;
  }
  .tns-controls button:first-child {
    left: 0;
  }
  .tns-controls button:last-child {
    right: 0;
  }
}

.dots, .sitemap-list {
  list-style: none;
}
.dots li, .sitemap-list li {
  padding-left: 12px;
  margin-top: 2px;
  position: relative;
}
.dots li::before, .sitemap-list li::before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 6px;
  background-color: #d25e0f;
  position: absolute;
  top: 10px;
  left: 0;
}
.dots ul, .sitemap-list ul {
  list-style: none;
  margin-top: 0;
}

.sitemap-list {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}
.card h3 {
  text-align: center;
  color: #4c9fc2;
  font-weight: 600;
}
.card p {
  text-align: center;
}
.card ul {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.news-list {
  list-style: none;
}
.news-list li {
  display: flex;
  flex-direction: column;
}

.card-article {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  background-image: none !important;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.card-article:hover {
  border-color: #d25e0f;
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}
.card-article:hover .button {
  background-color: #d25e0f;
  border-color: #d25e0f;
  color: #fff;
  background-position: calc(100% - 0.75rem) center;
}
.card-article__image {
  aspect-ratio: 5/2;
  overflow: hidden;
}
.card-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-article__image--logo {
  padding: 10px;
}
.card-article__image--logo img {
  object-fit: none;
}
.card-article__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem;
}
.card-article .card-article__content__text {
  flex-grow: 1;
}
.card-article .button {
  background-image: url("/img/arrow-next.png");
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  padding-right: 3rem;
}
@media (min-width: ) {
  .card-article__image {
    aspect-ratio: 3/2;
  }
}

.faq {
  padding: 2rem 1rem;
  background-color: #1d252c;
  color: #fff;
  border-radius: 1.5rem;
}
.faq.js-enabled details .content {
  height: 0;
  transition: height 0.3s ease-in-out;
}
.faq details {
  overflow: hidden;
  position: relative;
}
.faq details:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.faq details:not(:first-child) {
  margin-top: 2rem;
}
.faq details[open] summary {
  margin-bottom: 1rem;
}
.faq details[open] summary h2 {
  color: #4c9fc2;
}
.faq details[open] summary svg {
  transform: rotate(180deg);
}
.faq details[open] summary svg circle, .faq details[open] summary svg path {
  stroke: #4c9fc2;
}
.faq details[open] .content {
  height: auto;
}
.faq details .content {
  overflow: hidden;
  margin: 0;
}
.faq details .content * + * {
  margin-top: 0.75rem;
}
.faq summary {
  user-select: none;
  outline: none;
  padding-right: 2rem;
  position: relative;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover h2 {
  color: #4c9fc2;
}
.faq summary:hover svg circle, .faq summary:hover svg path {
  stroke: #4c9fc2;
}
.faq summary h2, .faq summary svg, .faq summary svg circle, .faq summary svg path {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq summary h2 {
  color: #fff;
}
.faq summary svg {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}
@media (min-width: 40rem) {
  .faq {
    padding: 3rem;
  }
}

.flex > .faq {
  flex-grow: 1;
}

.faq--rounded {
  padding: 0;
  background-color: #fff;
  color: #1d252c;
  border-radius: 0;
}
.faq--rounded details {
  overflow: hidden;
  position: relative;
  padding: 1rem 2rem !important;
  border-radius: 1.5rem;
  border: 2px solid rgba(29, 37, 44, 0.1) !important;
  background: rgba(240, 240, 240, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq--rounded details:not(:first-child) {
  margin-top: 1.5rem;
}
.faq--rounded details[open] summary {
  color: #4c9fc2;
  -webkit-line-clamp: 2;
}
.faq--rounded details[open] summary span, .faq--rounded details[open] summary::after {
  color: #4c9fc2;
}
.faq--rounded details[open] summary::after {
  transform: rotate(225deg);
}
.faq--rounded details .content {
  overflow: hidden;
  margin: 0;
}
.faq--rounded details .content * + * {
  margin-top: 0.75rem;
}
.faq--rounded summary {
  padding-right: 1.5rem;
  text-overflow: ellipsis;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  position: relative;
  width: 100%;
}
.faq--rounded summary span {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq--rounded summary::after {
  content: "+";
  position: absolute;
  top: -4px;
  right: 0;
  width: 1.25rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 40rem) {
  .faq--rounded summary::after {
    top: 0;
  }
}

.icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% auto;
  z-index: 1;
}
.icon.mr-3 {
  margin-right: 0rem;
}
@media (min-width: 40rem) {
  .icon.mr-3 {
    margin-right: 3rem;
  }
}

.icon--xs {
  position: relative;
}
.icon--xs::before {
  height: 16px;
  width: 16px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: 50%;
}

.icon--sm::before {
  height: 40px;
  width: 40px;
  margin-right: 20px;
}

.icon--md::before {
  height: 52px;
  width: 52px;
}

.icon--lg::before {
  height: 56px;
  width: 56px;
}

.icon--xl::before {
  height: 60px;
  width: 60px;
}

.icon--xxl::before {
  height: 64px;
  width: 64px;
}

header.icon {
  position: relative;
}
header.icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% auto;
  z-index: 1;
}
header.icon--md {
  padding-left: calc(52px + 1.5rem);
}
header.icon--lg {
  padding-left: calc(56px + 1.5rem);
}
header.icon--xl {
  padding-left: calc(60px + 1.5rem);
}
header.icon--xxl {
  padding-left: calc(64px + 1.5rem);
}
header.icon--contain::before {
  background-size: contain;
}

.icon--channels::before {
  background-image: url(../img/icons/channels.svg?v=0.0.1);
}

.icon--sectors::before {
  background-image: url(../img/icons/sectors.svg?v=0.0.1);
}

.icon--acquirers::before {
  background-image: url(../img/icons/acquirers.svg?v=0.0.1);
}

.icon--partners::before {
  background-image: url(../img/icons/partners.svg?v=0.0.1);
}

.icon--capabilities-host-paypage::before {
  background-image: url(../img/icons/capabilities-host-paypage.svg?v=0.0.1);
}

.icon--capabilities-over-the-phone-virtual-terminal::before {
  background-image: url(../img/icons/capabilities-over-the-phone-virtual-terminal.svg?v=0.0.1);
}

.icon--capabilities-pay-by-link::before {
  background-image: url(../img/icons/capabilities-pay-by-link.svg?v=0.0.1);
}

.icon--capabilities-payment-terminals::before {
  background-image: url(../img/icons/capabilities-payment-terminals.svg?v=0.0.1);
}

.icon--mail::before {
  background-image: url(../img/icons/mail.svg?v=0.0.1);
}

.icon--phone::before {
  background-image: url(../img/icons/phone.svg?v=0.0.1);
}

.icon--location::before {
  background-image: url(../img/icons/location.svg?v=0.0.1);
}

.icon--paybylink::before {
  background-image: url(../img/icons/paybylink.svg?v=0.0.1);
}

.icon--card-alias::before {
  background-image: url(../img/icons/card-alias.svg?v=0.0.1);
}

.icon--level-3-data-processing::before {
  background-image: url(../img/icons/level-3-data-processing.svg?v=0.0.1);
}

.icon--mobile-payments::before {
  background-image: url(../img/icons/mobile-payments.svg?v=0.0.1);
}

.icon--payment-terminals::before {
  background-image: url(../img/icons/payment-terminals.svg?v=0.0.1);
}

.icon--paya-gateway-logo::before {
  background-image: url(../img/icons/paya-gateway-logo.svg?v=0.0.1);
}

.icon--payment-terminal::before {
  background-image: url(../img/icons/payment-terminal.svg?v=0.0.1);
}

.icon--globe::before {
  background-image: url(../img/icons/globe.svg?v=0.0.1);
}

.icon--capabilities-host-paypage::before {
  width: 64px;
  height: 51.2px;
}

.icon--mobile-payments::before {
  width: 55.683px;
  height: 64px;
}

.icon--paybylink::before {
  width: 52px;
  height: 50px;
}

.icon--payment-terminals::before {
  width: 60.727px;
  height: 62px;
}

.icon--card-alias::before {
  width: 64px;
  height: 49.449px;
}

.icon--level-3-data-processing::before {
  width: 62.933px;
  height: 64px;
}

.icon--paya-gateway-logo-dark::before {
  background-color: #d25e0f;
  -webkit-mask: url("../img/icons/paya-gateway-logo.svg?v=0.0.1") no-repeat center;
  mask: url("../img/icons/paya-gateway-logo.svg?v=0.0.1") no-repeat center;
  mask-size: contain;
}

.icon--paybylink-dark::before {
  background-color: #fff;
  -webkit-mask: url("../img/icons/paybylink.svg?v=0.0.1") no-repeat center;
  mask: url("../img/icons/paybylink.svg?v=0.0.1") no-repeat center;
  mask-size: contain;
}

.icon-block {
  background-repeat: no-repeat;
  background-position: 16px 0;
  background-size: 64px;
  padding-top: 84px;
}

.icon-block--retail {
  background-image: url(../img/icons/sectors-retail.svg);
}

.icon-block--aerospace {
  background-image: url(../img/icons/sectors-aerospace.svg);
}

.icon-block--car-booking {
  background-image: url(../img/icons/sectors-car-booking.svg);
}

.icon-block--cashless-vending {
  background-image: url(../img/icons/sectors-cashless-vending.svg);
}

.icon-block--charity {
  background-image: url(../img/icons/sectors-charity.svg);
}

.icon-block--construction {
  background-image: url(../img/icons/sectors-construction.svg);
}

.icon-block--education {
  background-image: url(../img/icons/sectors-education.svg);
}

.icon-block--electric-vehicle-charging {
  background-image: url(../img/icons/sectors-electric-vehicle-charging.svg);
}

.icon-block--government {
  background-image: url(../img/icons/sectors-government.svg);
}

.icon-block--parking {
  background-image: url(../img/icons/sectors-parking.svg);
}

.icon-block--hospitality {
  background-image: url(../img/icons/sectors-hospitality.svg);
}

.header__logo {
  position: relative;
  display: flex;
  align-items: center;
}
.header__logo img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.--mobile-menu-open .header__logo img:first-child {
  opacity: 0;
}
.--mobile-menu-open .header__logo img:last-child {
  opacity: 1;
}

.side-contact-button {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  padding: 0 !important;
  background-color: #d25e0f;
  background-image: url(../img/icon-envelope-lg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  text-indent: 150px;
  font-size: 0;
  overflow: hidden;
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
}
@media (min-width: 55rem) {
  .side-contact-button {
    right: 1.5rem;
    bottom: 1.5rem;
    height: 64px;
    width: 64px;
    background-size: 40px;
  }
}

else .side-contact-button {
  top: 190px;
  position: fixed;
  right: -3.875em;
  transform: rotate(270deg);
  z-index: 3;
  font-size: 1em;
  padding: 1em 1.5em;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1280px) {
  else .side-contact-button {
    top: 225px;
  }
}

.side-contact {
  display: none;
}

.tingle-modal {
  overflow: auto;
}
.tingle-modal input, .tingle-modal textarea {
  border-color: #f6f6f6;
  line-height: 1;
}

.tingle-modal-box {
  max-width: 34em;
}
.tingle-modal-box form > div {
  margin-top: 0.5em;
}
.tingle-modal-box form > div:last-child {
  margin-top: 1.5em;
}

@media (min-width: 40rem) {
  .carousel .tns-outer {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (min-width: 78rem) {
  .carousel #js_carousel-sectors .tns-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.carousel--association-logos {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}
.carousel--association-logos figure {
  display: inline-block;
  margin: 0 3rem;
}
.carousel--association-logos img {
  display: block;
  width: auto;
  height: 24px;
}

.carousel--association-logos--large {
  animation: marquee 60s linear infinite;
}
.carousel--association-logos--large img {
  height: 48px;
}

.carousel--association-logos--no-animation {
  animation: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 0;
}

.shift4 {
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.shift4 img {
  height: 40px;
}

.page-index .shift4 {
  padding: 2px 2px 2px 4px;
  border-radius: 4px;
}
.page-index .shift4 img {
  height: 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  48% {
    transform: translateX(calc(-100% + 100vw));
  }
  96% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.logo-loop {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-loop__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-loop 35s linear infinite;
}
.logo-loop:hover .logo-loop__track {
  animation-play-state: paused;
}
.logo-loop figure {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 2.5rem;
}
@media (min-width: 40rem) {
  .logo-loop figure {
    padding: 0 3.5rem;
  }
}
.logo-loop img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}
@media (min-width: 40rem) {
  .logo-loop img {
    height: 44px;
  }
}

@keyframes logo-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-loop__track {
    animation: none;
  }
}
.carousel--terminals {
  position: relative;
  padding-bottom: 32px;
}
.carousel--terminals .tns-nav {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.carousel--terminals .tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(29, 37, 44, 0.75);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.carousel--terminals .tns-nav button:not(:last-child) {
  margin-right: 12px;
}
.carousel--terminals .tns-nav button.tns-nav-active {
  background-color: #d25e0f;
}

.carousel--usp ul {
  list-style: none;
  display: flex;
}
.carousel--usp li {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}
.carousel--usp h3, .carousel--usp p {
  width: 266px;
  padding-left: 16px;
}
.carousel--usp h3 {
  font-size: 1.25rem;
  line-height: normal;
  position: relative;
}
.carousel--usp h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  bottom: 0;
  border-left: 2px solid #4c9fc2;
}
.carousel--usp p {
  margin-top: 0.75rem;
}
@media (min-width: 650px) {
  .carousel--usp .tns-slide-active + .tns-slide-active {
    background-position: calc(100% - 250px) 0;
  }
  .carousel--usp .tns-slide-active + .tns-slide-active h3, .carousel--usp .tns-slide-active + .tns-slide-active p {
    margin-left: auto;
  }
}
@media (min-width: 980px) {
  .carousel--usp .tns-slide-active + .tns-slide-active {
    background-position: calc(50% - 116px) 0;
  }
  .carousel--usp .tns-slide-active + .tns-slide-active h3, .carousel--usp .tns-slide-active + .tns-slide-active p {
    margin-right: auto;
  }
  .carousel--usp .tns-slide-active + .tns-slide-active + .tns-slide-active {
    background-position: calc(100% - 250px) 0;
  }
  .carousel--usp .tns-slide-active + .tns-slide-active + .tns-slide-active h3, .carousel--usp .tns-slide-active + .tns-slide-active + .tns-slide-active p {
    margin-right: 0;
  }
}

.block {
  padding: 1.5rem;
}
@media (min-width: 40rem) {
  .block {
    padding: 3rem;
  }
  .block.card--address {
    padding: 3rem 2.5rem;
  }
}
@media (min-width: 55rem) {
  .block.bg-grey {
    padding-bottom: 4rem;
  }
}
.block.small-pad-right {
  padding: 3rem;
}
@media (min-width: 40rem) {
  .block.small-pad-right {
    padding: 3rem 1rem 3rem 3rem;
  }
}

.block--image {
  position: relative;
  padding: 0;
}
.block--image figcaption {
  color: #fff;
  font-weight: 700;
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
}
.block--image figcaption h2 {
  line-height: normal;
  color: #fff;
}
.block--image figcaption h2 + p {
  margin-top: 1.5rem;
  font-weight: 400;
}
@media (min-width: 40rem) {
  .block--image figcaption {
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
  }
}

.block-paya h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}
.block-paya p {
  margin-top: 0.75rem;
}
.block-paya figure {
  max-width: 240px;
  margin-bottom: 2rem;
}
.block-paya figure img {
  max-height: 240px;
}
@media (min-width: 40rem) {
  .block-paya h3 {
    font-size: 2rem;
  }
  .block-paya p {
    font-size: 1.125rem;
  }
}
.block-paya div + div {
  margin-top: 1.5rem;
}
@media (min-width: 55rem) {
  .block-paya {
    padding-bottom: 2.5rem !important;
    position: relative;
    display: grid;
    grid-template-columns: 381px 1fr 310px;
    grid-template-rows: 180px 1fr 152px;
  }
  .block-paya figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 35%;
  }
  .block-paya figure img {
    max-height: 35%;
  }
  .block-paya div {
    position: relative;
  }
  .block-paya div:nth-child(2) {
    grid-row: 1;
    grid-column: 1;
    max-width: 16.875rem;
  }
  .block-paya div:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
    padding-left: 3rem;
  }
  .block-paya div:nth-child(4) {
    grid-row: 4;
    grid-column: 1;
    text-wrap: unset;
  }
  .block-paya div:nth-child(5) {
    grid-row: 4;
    grid-column: 3;
    padding-left: 3rem;
  }
}
@media (min-width: 65rem) {
  .block-paya div:nth-child(3) {
    padding-left: 0;
  }
}

.terminal-matrix__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}
.terminal-matrix__table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
}
.terminal-matrix__table th,
.terminal-matrix__table td {
  width: auto;
  text-align: center;
  padding: 0.75rem 0.5rem;
  white-space: nowrap;
}
.terminal-matrix__table th:first-child,
.terminal-matrix__table td:first-child {
  width: 12rem;
}
.terminal-matrix__table th:nth-child(2),
.terminal-matrix__table td:nth-child(2),
.terminal-matrix__table th:nth-child(3),
.terminal-matrix__table td:nth-child(3) {
  width: auto;
}
.terminal-matrix__table thead th {
  background: #1d252c;
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding-block: 1rem;
}
.terminal-matrix__table tbody th,
.terminal-matrix__table tbody td {
  border-top: 1px solid rgba(29, 37, 44, 0.06);
}
.terminal-matrix__table tbody tr:first-child th,
.terminal-matrix__table tbody tr:first-child td {
  border-top: 0;
}
.terminal-matrix__rowhead {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  white-space: normal;
  padding-left: 1rem !important;
  font-weight: 600;
  color: #1d252c;
  background: #fff;
}
@media (max-width: 65rem) {
  .terminal-matrix__rowhead {
    font-size: 0.78rem;
  }
}
@media (max-width: 40rem) {
  .terminal-matrix__rowhead {
    font-size: 0.72rem;
  }
}
thead .terminal-matrix__rowhead {
  z-index: 2;
  color: #fff;
  background: #1d252c;
}
.terminal-matrix__mark {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid #dcdcdc;
  background: transparent;
  vertical-align: middle;
}
.terminal-matrix__mark.is-completed {
  background: #00b0f0;
  border-color: #00b0f0;
}
.terminal-matrix__mark.is-inprogress {
  background: linear-gradient(90deg, #ffb300 0 50%, transparent 50%);
  border-color: #ffb300;
}
.terminal-matrix__mark.is-scheduled {
  background: linear-gradient(90deg, #d1d1d1 0 50%, transparent 50%);
  border-color: #d1d1d1;
}
.terminal-matrix__key {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(29, 37, 44, 0.7);
}
.terminal-matrix__key li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-matrix .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.terminal-matrix__table {
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 55rem) {
  .terminal-matrix__table,
  .terminal-matrix__table thead,
  .terminal-matrix__table tbody,
  .terminal-matrix__table tr,
  .terminal-matrix__table th,
  .terminal-matrix__table td {
    width: auto !important;
  }
  .terminal-matrix__table thead {
    display: table-header-group;
  }
  .terminal-matrix__table tbody {
    display: table-row-group;
  }
  .terminal-matrix__table tr {
    display: table-row;
  }
  .terminal-matrix__table th,
  .terminal-matrix__table td {
    display: table-cell;
    padding: 0.75rem 0.5rem;
  }
  .terminal-matrix__table td::before {
    content: none;
    display: none;
  }
  .terminal-matrix__table td:first-child {
    background: initial;
    color: inherit;
  }
}

.copyright {
  padding: 1rem 0 2rem;
  color: #eee;
}
.copyright p + p {
  margin-top: 1.5rem;
}
@media (min-width: 55rem) {
  .copyright .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .copyright p + p {
    margin-top: 0.5rem;
  }
}

.copyright__information p, .copyright__information li {
  font-size: 0.75rem;
  line-height: normal;
}
.copyright__information p span {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5rem;
  position: relative;
  top: -2px;
}

.dbwd p, .dbwd figure {
  display: inline-block;
  vertical-align: top;
}
.dbwd p {
  font-weight: 600;
  line-height: 16px !important;
  margin-right: 0.25rem;
  letter-spacing: 1px;
}
.dbwd img {
  display: block;
}

.cta {
  background-color: #4c9fc2;
  color: #fff;
  padding: 3.75rem 0;
  text-align: center;
}
.cta strong {
  font-weight: 700;
}
.cta p {
  font-size: 1.125em;
  font-weight: 600;
  line-height: normal;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 40rem) {
  .cta p {
    font-size: 1.55em;
  }
}

.footer {
  background-color: #1d252c;
  color: #fff;
  padding-top: 4rem;
  font-size: 0.875rem;
}
.footer > .container {
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer h2 {
  color: #fff;
}
.footer a:hover {
  color: #4c9fc2;
}

.footer__logo {
  display: inline-block;
}

.footer__contact h2 {
  margin-top: 1.25rem;
  line-height: normal;
}
.footer__contact p {
  line-height: 1rem;
  padding: 0.25rem 0 0.25rem 32px;
  letter-spacing: 0.25px;
}
.footer__contact p:last-child {
  line-height: normal;
}
.footer__contact p + p {
  margin-top: 0.5rem;
}
.footer__contact a {
  line-height: 1rem;
}
@media (min-width: 40rem) {
  .footer__contact {
    padding-right: 2rem;
  }
}

.footer__nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 6rem;
}
.footer__nav > ul > li:nth-child(2) {
  max-width: 9.0625rem;
}
.footer__nav > ul > li:nth-child(3) {
  max-width: 9.875rem;
}
.footer__nav h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.footer__nav ul ul {
  margin-top: 1.5rem;
}
.footer__nav ul ul li, .footer__nav ul ul a {
  line-height: normal;
}
.footer__nav ul ul li + li {
  margin-top: 0.5rem;
}

.pci-dss {
  display: block;
  margin-top: 0.5rem;
  width: 84px;
  border-radius: 4px;
  padding: 2px;
  background-color: #fff;
}
.pci-dss img {
  display: block;
}

/*# sourceMappingURL=style.css.map */
