﻿@charset "UTF-8";

:root { 
    --primary: hsl(257deg 100% 63%); 
    --primary: hsl(var(--primaryH) var(--primaryS) var(--primaryL));

    --primaryH: 257deg;
    --primaryS: 100%;
    --primaryL: 63%;
}

body {
  position: relative;
  color: #3e396b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Product Sans", Helvetica, Arial, serif;
  line-height: 1.3;
}


a {
  color: #7642FF;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover,
a:focus,
a:active {
  color: #2e00a8;
  text-decoration: none;
}

.link-muted {
  color: #464a4c;
}

.link-reverse {
  color: #fff;
}

.link-reverse:hover {
  color: #fff;
  opacity: 0.7;
}

.my-lg {
  margin-top: 5em !important;
  margin-bottom: 5em !important;
}

.py-lg {
  padding-top: 5em !important;
  padding-bottom: 5em !important;
}

.mt-lg {
  margin-top: 5em !important;
}

.mb-lg {
  margin-bottom: 5em !important;
}

.pt-lg {
  padding-top: 5em !important;
}

.pb-lg {
  padding-bottom: 5em !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.icon-number {
  font-size: 4rem;
  line-height: .8;
  font-weight: 600;
  color: #3b49fa;
}

.icon-number svg {
    fill: #3b49fa;
    width: 4rem;
    height: 4rem;
}

.pricing .banking-connector .card-title.icon-number svg {
    width: 64px;
    height: 64px;
}


@media (min-width: 768px) {
  .my-md-lg {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
}

.display-5 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-8 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.5;
  color: #162EE4;
}

.bg-light {
  background-color: #f8faff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-primary {
  background-color: #7642FF !important;
}

.bg-gradient {
  background-image: -webkit-linear-gradient(242deg, #6937EA 0%, #377FEA 65%);
  background-image: -o-linear-gradient(242deg, #6937EA 0%, #377FEA 65%);
  background-image: linear-gradient(-152deg, #6937EA 0%, #377FEA 65%);
}

.light-text {
  color: #b5bcc0;
}

.text-inverse {
  color: #fff;
}

.form-control::-webkit-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control:-ms-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control::-ms-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control::placeholder {
  color: #636c72;
  opacity: 0.5;
}

.form-control::-webkit-input-placeholder {
  color: #636c72;
  opacity: 0.5;
}

.text-muted {
  color: #a7a2ce !important;
}

/*FONT*/
.sans-serif-font {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.thin-font {
  font-weight: 300 !important;
}

/*font awesome*/
.fa-valign {
  vertical-align: middle;
}

/*-----------------------------------
 * Section
 *-----------------------------------*/
.section {
  padding-top: 3em;
  padding-bottom: 3em;
}

.section-title {
  margin: 2em auto;
}

.section-shadow-bottom {
    -webkit-box-shadow: 0px 25px 25px 0px rgb(0 0 0 / 6%);
    -moz-box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 25px 25px 0px rgb(0 0 0 / 6%);
    z-index: 9;
}

/*-----------------------------------
 * OWL CAROUSEL
 *-----------------------------------*/
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.owl-carousel .owl-item .citation img {
  width: 75px;
  display: inline;
}

.btn {
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-nav .btn {
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.btn-lg {
  font-size: 16px;
  letter-spacing: 2px;
  padding: 17px 35px;
}

.btn-lg:hover,
.btn-lg:active {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 12px 35px;
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0;
}

.btn-primary,
.btn-primary:focus {
  background-color: #7642FF;
  background-image: -webkit-gradient(linear, left top, right top, from(#7642FF), to(#4259ff));
  background-image: -webkit-linear-gradient(left, #7642FF, #4259ff);
  background-image: -o-linear-gradient(left, #7642FF, #4259ff);
  background-image: linear-gradient(90deg, #7642FF, #4259ff);
  border: 0;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus:hover,
.btn-primary:focus:active {
  color: #fff;
  background-color: #6429ff;
  background-image: -webkit-gradient(linear, left top, right top, from(#4259ff), to(#7642FF));
  background-image: -webkit-linear-gradient(left, #4259ff, #7642FF);
  background-image: -o-linear-gradient(left, #4259ff, #7642FF);
  background-image: linear-gradient(90deg, #4259ff, #7642FF);
}

.btn-outline,
.btn-outline:focus {
  color: #fff;
  background-image: none;
  background-color: transparent;
  border-color: #fff;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus:hover,
.btn-outline:focus:active {
  color: #292b2c;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-primary {
  color: #7642FF;
  background-image: none;
  background-color: transparent;
  border-color: #7642FF;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  color: #fff;
  background-color: #7642FF;
  border-color: #7642FF;
  background-image: -webkit-gradient(linear, left top, right top, from(#7642FF), to(#4259ff));
  background-image: -webkit-linear-gradient(left, #7642FF, #4259ff);
  background-image: -o-linear-gradient(left, #7642FF, #4259ff);
  background-image: linear-gradient(90deg, #7642FF, #4259ff);
}

/* ------------------------------------------------

Page    : Start.ly SaaS CSS
Version : 1.0
Author  : Surjith S M
URI     : http://themeforest.net/user/surjithctly

TABLE OF CONTENTS
-----------------

1. Header
2. navbar
3. One Page
4. Cards
5. Portfolio
6. Video
7. Team
8. Contact
9. Footer

Copyright © All rights Reserved
Surjith S M / @surjithctly

-------------------------------------------------- */
/*-----------------------------------
 * Header
 *-----------------------------------*/
header {
  position: relative;
}

.gradient-mask {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#490bf4), to(#0b4ff9));
}

/*Swiper Slider*/
.swiper-container {
  width: 100%;
  height: 850px;
  height: 100vh;
}

.swiper-container .jumbotron {
  min-height: auto;
}

@media (max-width: 767px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.parallax-bg.bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url("../images/agency/poster.jpg") no-repeat;
  background-size: cover;
  -webkit-transition: 1s opacity;
  -o-transition: 1s opacity;
  transition: 1s opacity;
}

.bg-video.align-bottom video {
  top: auto;
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px;
}

/*end swiper css*/
.jumbotron {
  width: 100%;
  background-color: transparent;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 2rem 0;
  }

  .jumbotron.sub-page {
    padding: 0 0 2rem 0;
  }
}

.jumbotron.sub-page {
  min-height: 290px;
  background: #f8faff;
}

.jumbotron .lead {
  max-width: 600px;
  margin: auto;
}

.jumbotron .btn-lg {
  padding: 17px 35px;
}

.jumbotron .btn {
  margin: 10px;
}

.jumbotron-two {
  padding: 3rem 0;
  position: relative;
}

.jumbotron-two .lead {
  max-width: 500px;
  margin: 0;
}

.overflow-hidden {
  overflow-x: hidden;
}

.link-container { position: relative; padding: 3rem 0; }
.link-container__header { margin: 0 0 20px 0; padding: 0; color: #3e396b; font-weight: 700; line-height: 1.3; font-size: 1.5rem; text-align: center; position: relative; }

.link-container__header:before { content: ""; display: block; border-top: solid 1px #a1a5a6; width: 100%; height: 1px; position: absolute; top: 50%; z-index: 1; }
.link-container__header span { background: #e8ecfe; padding: 0 20px; position: relative; z-index: 5; display: inline-block; max-width: 80%; }
.link-container__header.banking-price span { background: #f8faff; color: #3e396b; }
.link-container__header.skroutz-ready-price span { background: #F8A662; color: #fff; }
.link-container__header.hotel-availabilities-price span { background: #64c8d3; color: #fff; }
.link-container__header.smart-hygeia-price span { background: #008b90; color: #fff; }

.bc-dark .link-container__header.banking-price span { background: transparent; color: #fff; }
.bc-dark .link-container__header:before { width: 45%; }
.bc-dark .link-container__header:after { content: ""; display: block; border-top: solid 1px #a1a5a6; width: 45%; height: 1px; position: absolute; top: 50%; z-index: 1; right: 0; }

@media (max-width: 767px) {
    .bc-dark .link-container__header:before {
        border: none;
    }

    .bc-dark .link-container__header:after {
        border: none;
    }
}

.link-box { padding: 10px; margin: 0 0 30px 0; text-align: center; }
.link-box__container { background: #fff; border-radius: 10px; padding: 20px 10px; margin: 0 0 0 0; text-align: center; height: 100%; }

.video-container { text-align: center; }

@media (min-width: 991px) and (max-width: 1200px) { .link-container { padding: 3rem 5rem; }
}

@media (min-width: 1600px) {
    .link-container { padding: 1.75rem 10rem 0 10rem; }
}

    .bg-shape { position: absolute; background-color: #7642FF; background-image: -webkit-linear-gradient(350deg, #7642FF, #0b4ff9); background-image: -o-linear-gradient(350deg, #7642FF, #0b4ff9); background-image: linear-gradient(100deg, #7642FF, #0b4ff9); top: -440px; right: -10px; border-radius: 0%; width: 50%; height: 750px; -webkit-transform: skew(3deg, 30deg); -ms-transform: skew(3deg, 30deg); transform: skew(3deg, 30deg); opacity: 1; z-index: -1; display: none; }

    .bg-triangle { position: absolute; background-color: #7642FF; background-image: -webkit-linear-gradient(350deg, #7642FF, #0b4ff9); background-image: -o-linear-gradient(350deg, #7642FF, #0b4ff9); background-image: linear-gradient(100deg, #7642FF, #0b4ff9); bottom: -50%; left: -30%; border-radius: 0%; width: 1250px; height: 500px; -webkit-transform: skew(3deg, 30deg); -ms-transform: skew(3deg, 30deg); transform: skew(3deg, 30deg); opacity: 1; z-index: -1; display: none; }

    @media (min-width: 990px) {
        .bg-triangle,
        .bg-shape { display: block; }
        .ms-logo-size { max-width: 600px; }
        .ms-logo-banner-size { max-width: 400px; }
    }

    .link-box__logo { display: flex; justify-content: center; align-items: center; height: 120px; }

    .digital-logo { height: 80px; }
    .pylon-logo { height: 80px; }
    .apps-logo { height: 80px; }

    .link-box__text { display: flex; justify-content: flex-start; align-items: center; margin: 0; flex-direction: column; }
    .link-box__title { margin: 0; color: #3e396b; }
    .link-box__subtitle { margin: 0; color: #3e396b; font-weight: 400; font-size: 21px; }

    @media (max-width: 1350px) {
        .bg-triangle { bottom: -85%; }
    }

    @media (max-width: 991px) {
        .bg-shape { top: -150px; right: 0; width: 20%; height: 500px; }
        .video-container { margin-top: 30px; }
        .bg-triangle { bottom: -50%; }
    }

    @media (max-width: 767px) {
        .bg-shape { display: none; }
    }

    @media (max-width: 991px) {
        .bg-circle { height: 400px; width: 400px; top: -200px; left: -200px; display: none; }
    }

    @media (max-width: 767px) {
        .bg-circle { display: none; }
    }



    .hero-copy .container { max-width: 40rem; }

    [class^="display"] { font-family: "Product Sans", Helvetica, Arial, serif; font-weight: 700; }

    @media (max-width: 991px) {
        .display-3 { font-size: 4rem; }

        .display-5 { font-size: 1.4rem; }
    }

    @media (max-width: 767px) {
        .display-3 { font-size: 2.2rem; }

        .display-4 { font-size: 2.5rem; }
    }

    .split-bg { background: -webkit-gradient(linear, left top, left bottom, from(#f8faff), color-stop(50%, #f8faff), color-stop(50%, white)); background: -webkit-linear-gradient(top, #f8faff 0%, #f8faff 50%, white 50%); background: -o-linear-gradient(top, #f8faff 0%, #f8faff 50%, white 50%); background: linear-gradient(to bottom, #f8faff 0%, #f8faff 50%, white 50%); }

    .macbook-hero { max-width: 1100px; position: relative; margin: 0 auto; }

        .macbook-hero .macbook-screen { position: absolute; left: 12.4%; top: 5.4%; right: 11.8%; bottom: 30.6%; max-width: 835px; max-height: 522px; background: #fff; }

            .macbook-hero .macbook-screen img { width: 100%; height: 100%; }

    .section { position: relative; }

        .section.bg-overlay:before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); }

        .section.bg-gradient:before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: -webkit-gradient(linear, left top, right top, from(rgba(106, 17, 203, 0.76)), to(rgba(37, 117, 252, 0.77))); background-image: -webkit-linear-gradient(left, rgba(106, 17, 203, 0.76) 0%, rgba(37, 117, 252, 0.77) 100%); background-image: -o-linear-gradient(left, rgba(106, 17, 203, 0.76) 0%, rgba(37, 117, 252, 0.77) 100%); background-image: linear-gradient(to right, rgba(106, 17, 203, 0.76) 0%, rgba(37, 117, 252, 0.77) 100%); }

    /*-----------------------------------
 * NAVBAR
 *-----------------------------------*/
    .navbar { -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; padding: 1rem; }

        .navbar .btn { -webkit-box-shadow: none; box-shadow: none; }

        .navbar.bg-light { padding: 0.4rem; background: #FFF !important; -webkit-box-shadow: 0px 9px 68px 0px rgba(62, 57, 107, 0.1); box-shadow: 0px 9px 68px 0px rgba(62, 57, 107, 0.1); }

    .navbar-toggler { margin-top: 5px; }

    .navbar-border { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

    .navbar-transparent { background: transparent; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }

    .nav-link { padding: .3em 1em; }

        .nav-link .pe-7s-angle-down { margin: -13px -13px -13px -8px; position: relative; top: 8px; }

    .navbar-light .navbar-nav .nav-link:focus,
    .navbar-light .navbar-nav .nav-link:hover { color: #314afb; }

    .navbar-light .navbar-nav .nav-link { transition: font-weight 0s }

        .navbar-light .navbar-nav .nav-link.active { color: #314afb; font-weight: bold }

    
    .feature-tabs .card.pricing .philoxenia { margin-top: 1.5rem; }

        .feature-tabs .nav { justify-content: center; border: none; margin-bottom: 20px; }

        .feature-tabs .nav-link { border: none; color: #b8bcce; border-bottom: 3px solid transparent; font-size: 21px; font-weight: bold; background: #f1f5f6; margin: 0 10px; }

            .feature-tabs .nav-link.active,
            .feature-tabs .nav-link.active:hover { background: none; color: #314afb; border-color: #314afb; font-weight: bold; }

        .feature-tabs .tab-content h2 { color: #717576; font-weight: bold; line-height: 1; }

        .feature-tabs .nav-link:hover { border-color: transparent; color: #314afb; }
    
    @media (max-width: 767px) {
        .navbar-toggleable-md > .container { width: 100%; }

        .nav-link { padding: .3em 0.6em; }
    }

    @media (max-width: 991px) {
        body:not(.sticky) .navbar:not(.navbar-light).menu-is-open { background: rgba(0, 0, 0, 0.7); }

        .navbar-nav { margin-bottom: 1em; }

        .navbar-toggleable-md .navbar-nav .dropdown-menu { text-align: center; }
    }

    @media (min-width: 992px) {
        .navbar-expand-lg .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem; }
    }

    .navbar-nav .nav-link { font-size: 16px; text-align: center; position: relative; }

    .navbar-inverse .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.8); text-transform: uppercase; font-size: 14px; }

    @media (min-width: 992px) {
        .navbar-nav .nav-link:before { content: ""; height: 1px; position: absolute; bottom: 5px; left: 50%; right: 50%; border-bottom: 1px solid #7642FF; margin-right: auto; margin-left: auto; -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; }
    }

    .navbar-inverse .navbar-nav .nav-link.active { color: #7642FF; }

    @media (min-width: 992px) {
        .navbar-inverse .navbar-nav .nav-link.active:after { content: ""; height: 1px; position: absolute; bottom: 5px; left: 0; right: 0; border-bottom: 1px solid #7642FF; margin-right: 0.95rem; margin-left: 0.95rem; }
    }

    @media (min-width: 992px) {
        .navbar-toggleable-md .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem; }
    }
    
    @media (max-width: 385px) {
        .navbar .navbar__container { justify-content: center; }
        .navbar-toggler { margin-top: 0; }
    }

    /*Dropdown*/
    .dropdown-menu { border-radius: 0; border: 1px solid rgba(0, 0, 0, 0.05); -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.05); box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.05); min-width: 306px; }

    .dropdown-item { padding: 5px 2rem 5px 1.2rem; }

        .dropdown-item.active,
        .dropdown-item:active { color: #314afb; background-color: #f8faff; font-weight: 600; }

    @media (min-width: 992px) {

        .navbar-expand-lg > .container,
        .navbar-expand-lg > .container-fluid { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; }
    }

    /*-----------------------------------
 * YOUTUBE VIDEO
 *-----------------------------------*/
    iframe { display: block; }

    .youtube { background-position: center; background-repeat: no-repeat; position: relative; overflow: hidden; -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; transition: all 200ms ease-out; cursor: pointer; }

        .youtube .play { background: #FFF; border-radius: 50%; width: 80px; height: 80px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-box-shadow: 0px 9px 68px 0px rgba(62, 57, 107, 0.2); box-shadow: 0px 9px 68px 0px rgba(62, 57, 107, 0.2); text-align: center; padding: 17px 20px; }

            .youtube .play span { color: #7642FF; }

    /*-----------------------------------
 * CLIENT LOGOS
 *-----------------------------------*/
    .client-logos.negative-margin { margin-top: -180px; }

    @media (max-width: 991px) {
        .client-logos.negative-margin { margin-top: -150px; }
    }

    @media (max-width: 767px) {
        .client-logos.negative-margin { margin-top: -100px; }
    }

    @media (max-width: 575px) {
        .client-logos.negative-margin { margin-top: -70px; }
    }

    @media (min-width: 992px) {
        .client-logos { padding-left: 1em; padding-right: 1em; }
    }

    @media (max-width: 991px) {
        .client-logos img { height: 50px; }
    }

    /*-----------------------------------
 * FEATURES
 *-----------------------------------*/
    .browser-window { display: inline-block; text-align: left; min-height: 200px; max-width: 100%; border-radius: 5px; background-color: #F1F3F5; -webkit-box-shadow: 0 19px 38px rgba(137, 149, 199, 0.15), 0 15px 12px rgba(137, 149, 199, 0.08); box-shadow: 0 19px 38px rgba(137, 149, 199, 0.15), 0 15px 12px rgba(137, 149, 199, 0.08); margin-bottom: 60px; overflow: hidden; }

        .browser-window.limit-height { max-height: 500px; }

        .browser-window .top-bar { height: 40px; border-radius: 5px 5px 0 0; border-top: thin solid #F1F3F5; border-bottom: thin solid #F1F3F5; background: #f8faff; width: 100%; }

        .browser-window .circle { height: 13px; width: 13px; margin-right: 5px; display: inline-block; border-radius: 50%; background-color: #fff; }

        .browser-window .circles { margin: 12px 12px; }

        .browser-window .content { display: inline-block; margin: 0; border-radius: 0 0 5px 5px; background-color: #fafafa; max-height: 500px; }

            .browser-window .content img { max-width: 100%; height: auto; }

        .browser-window .circle-red { background: #FBBBF5; }

        .browser-window .circle-yellow { background: #F8E397; }

        .browser-window .circle-blue { background: #79CFD5; }

    .cast-shadow { border-radius: 10px; -webkit-box-shadow: 0px 9px 68px 0px rgba(62, 57, 107, 0.2); box-shadow: 0px 9px 68px 0px rgba(62, 57, 107, 0.2); }

    .media-icon i { min-width: 50px; color: #7642FF; }

    .color-icon i { color: #7642FF; }

    /*-----------------------------------
 * CARDS
 *-----------------------------------*/
    .card { -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }

        .card:hover { margin-top: -5px; -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); transition: .1s all ease-in-out; }

    .row .col-lg-4 .card.pricing { }

    .card.pricing { height: 100%; }

    .stat-counter { color: #fff; }

    .card-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 4rem; }
    .card-list .card.-simple { border: none; text-align: center; gap: 1rem; justify-content: space-between; }
    .card-list .card.-simple:hover { border: none; text-align: center; margin: 0; box-shadow: none; transition: .1s all ease-in-out; }
    .card-list .card__icon { height: 100px; }
    .card-list .card__icon img { height: 100%; width: auto; max-width: 200px; }
    .card-list .card__text { font-weight: 600; line-height: 1.2; }

    .card-list .card__cta a { color: var(--primary); border-radius: 100px; padding: .5rem 1rem; border: 1px solid transparent; }
    .card-list .card__cta a:hover,
    .card-list .card__cta a:focus,
    .card-list .card__cta a:active { color: hsl(var(--primaryH) var(--primaryS) 40%); text-decoration: none; border: 1px solid hsl(var(--primaryH) var(--primaryS) 40%); border-radius: 100px; padding: .5rem 1rem; }

    @media (max-width: 764px) {
        .card-list { grid-template-columns: 1fr; gap: 3rem; }
    }

    /*-----------------------------------
 * TWITTER CARDS
 *-----------------------------------*/
    .embed_twitter iframe { margin: 0 auto !important; }

    .embed-tweet-item { min-height: 200px; margin-bottom: 20px; }

    .EmbeddedTweet { height: 200px !important; }

    .embed-tweet-item { width: 100%; }

        .embed-tweet-item blockquote { width: 100%; min-height: 200px; background: url(../images/twitter-placeholder.png) no-repeat center top; background-size: contain; border: none; }

    /*-----------------------------------
 * PRICING
 *-----------------------------------*/
    .pricing { text-align: center; border: 0; padding: 20px; border-radius: 15px; margin-bottom: 10px; }

        .pricing small, .card.-seminar small { font-size: 22px; letter-spacing: 1px; }

        .pricing .card-title { font-size: 53px; font-family: "Product Sans", Helvetica, Arial, serif; font-weight: 500; margin: 0px; }

        .pricing .card-title2 { font-size: 14px; font-family: "Product Sans", Helvetica, Arial, serif; font-weight: 300; margin: 0px 0px 10px 0px; opacity: 0.8; }

        .pricing .card-title3 { font-size: 18px; font-style: italic; font-family: "Product Sans", Helvetica, Arial, serif; font-weight: 400; margin: 0 0 20px 0px; opacity: 0.8; min-height: 1.45rem; }

        .pricing .plan-muted { text-decoration: line-through; opacity: 0.5; }

        .pricing ul { line-height: 2.0; margin: 0 15px; flex: 1; }

        .pricing .banking-connector .card-title svg {
            width: 50px;
            fill: #162ee4;
        }

        .edition-action__container {
            padding-top: 4rem;
        }

    .with-icon { position: relative; padding: 10px 0 10px 40px; font-size: 14px; border-bottom: 1px solid #f1f5f6; line-height: 1.2; }
    .without-icon { position: relative; padding: 10px 0 10px 10px; font-size: 14px; border-bottom: 1px solid #f1f5f6; line-height: 1.2; }

    .list-icon   { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0.1; width: 24px; }
    .d4u-svg-size { width: 20px; }
    .list-header { font-size: 15px !important; text-align: center !important; background-color: #eaeef7; font-weight: bold;  }

    .parent-icon-list { top: 30%; }
    .pricing .inner-icon-list { margin: 5px; padding-left: 20px; line-height: 20px; font-size: .9em; }

    #pricing .container-full { padding-left: 30px; padding-right: 30px; }

    .subscriptions-comparison__container {
        -webkit-box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.06);
        -moz-box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.06);
        box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.06);
    }

    .subscriptions-comparison__container .col-lg-6,
    .subscriptions-comparison__container .col-xl-3 {
        margin-bottom: 20px;
    }

    @media (min-width: 1800px) {
        #pricing .container-full { padding-left: 100px; padding-right: 100px; }
    }
    
    @media (min-width: 1333px) {
        #pricing .container-full { padding-left: 100px; padding-right: 100px; }
    }

    @media (max-width: 379px) {
        .parent-icon-list { top: 27%; }
    }


    .carlink-header { display: flex; }
    .carlink-header svg { margin-right: 1rem; }


    /*-----------------------------------
 * FORM
 *-----------------------------------*/
    .form-control { height: 50px; border-radius: 30px; padding: 5px 20px; height: 55px; border-color: #ebebed; -webkit-box-shadow: 0 0 5px rgba(38, 38, 76, 0.05); box-shadow: 0 0 5px rgba(38, 38, 76, 0.05); }

    .btn-block { padding: 15px 0; }

    /*-----------------------------------
 * CONTACT
 *-----------------------------------*/
    #map { height: 620px; width: 100%; }

    .contact-box { background: #fff; margin-top: -250px; -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2); box-shadow: 0 0 50px rgba(0, 0, 0, 0.2); }

    .address-box { padding: 30px; color: #fff; }

        .address-box a { color: #fff; }

    .message-box { padding: 30px; }

    /*-----------------------------------
 * FOOTER
 *-----------------------------------*/
    .footer-links li { padding: 0em 0; }

    .footer-links a { color: #636c72; }

        .footer-links a:hover { text-decoration: none; color: #7642FF; }

    /*-----------------------------------
 * BLOG
 *-----------------------------------*/
    .post_title { font-weight: 300; margin: 1em 0 0.4em; line-height: 1.4; }

    a.title img { -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; transition: opacity 0.3s ease; }

    a.title:hover img { opacity: 0.8; }

    .page-link { padding: 0.7rem 1.35rem; color: #000; border: 1px solid #ececec; }

        .page-link:hover,
        .page-link:focus { background-color: #f7f7f7; }

    .page-item.disabled .page-link { border-color: #eceeef; color: #eceeef; }

    .page-item:first-child .page-link { border-radius: 0; padding: 5px 5px 4px; }

    .page-item:last-child .page-link { border-radius: 0; padding: 5px 5px 4px; }

    .author-box { max-width: 730px; margin: 20px auto; padding: 1em; border: 1px solid #eceeef; }

    .entry-content p { line-height: 1.7; margin-top: 1rem; margin-bottom: 2rem; }

    .entry-content img { max-width: 100%; height: auto; }

    @media (min-width: 992px) {
        .entry-content img.alignnone { max-width: 150%; height: auto; margin-left: -25%; }
    }

    .alignleft { display: inline; float: left; margin-right: 1.5em; }

    .wp-caption-text { text-align: center; margin: 0.8em 0 1.5em; color: #636c72; }

    /*Comments*/
    .comments-area,
    .comment-respond { max-width: 730px; margin: 20px auto; }

    .comment .avatar { width: 60px; margin-right: 1rem; }

    .comment ol.children { border-left: 2px solid #eceeef; }

    .comment-respond { border-top: 1px solid #eceeef; margin-top: 3em; padding-top: 2em; }


    #blazor-error-ui { display: none; }

    .contact-form { display: flex; }

    .contact-form-label { width: 80%; text-align: left; }

    .contact-form-input { width: 100%; border: 1px solid #a7a2ce; border-radius: 20px; }

    .contact-form-input:focus {
        outline: none;
        border-color: #7642FF;
        -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.45);
        -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.45);
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.45);
    }

    .contact-form-input::placeholder {
        padding-left: 5px;
    }

    .container form .validation-message { color: #ff8741; }

    .form-submit-button { margin-top: 10px; margin-bottom: 10px; }

    .form-submit-button > button { cursor: pointer; font-size: 13px; letter-spacing: 2px; padding: 11px 30px; }

    .contact-concent { font-size: 13px; color: #a7a2ce; }

    .contact-info { display: flex; flex-direction: column; }

    .contact-info-title { font-weight: bold; font-size: 20px; }

    .contact-info-content { font-weight: bold; display: flex; align-items: center; }

    .contact-info-content svg { width: 18px; fill: #3e396b; }

    .contact-info-content span { font-size: 17px; padding-left: 10px; }

    .contact-mobile-button { display: none; align-items: center; }

    .contact-mobile-button a { font-size: 17px; color: inherit; }

    .contact-mobile-button svg { fill: #fff; }

    .contact-info-content__footer {
        display: block;
    }
    .contact-mobile-button__footer {
        display: none;
    }
    
    .contact-mobile-button__footer a {
        color: #fff;
        text-transform: initial;
    }

    .contact-gdpr > div { margin-top: 55px; }

    @media (min-width: 768px) {
        .contact-form-label { width: 100%; text-align: left; }
    }
    
    @media (max-width: 767px) {
        .contact-info { margin-top: 55px; }
        .contact-info-container { margin: 0 auto; }

        .contact-info-content { justify-content: center; }

        .form-submit-button { text-align: center; }
    }

    @media (min-width: 992px) {

        .contact-form-label { width: 100%; text-align: left; }
    }

    .contact-link { display: none; }

    @media only screen and (max-width: 990px) {
        .contact-link { background: #1d1d1d; padding: 10px; color: #fff; font-size: 1rem; text-align: center; display: flex; align-items: center; justify-content: center; position: fixed; bottom: 0; width: 100%; z-index: 1000; }

            .contact-link span { font-size: .8em; font-weight: 400; }

            .contact-link a { display: inline-block; padding: 5px; background: #0099ff; color: #fff; text-decoration: none; margin-left: 10px; font-weight: 600; font-size: .8em; }

        .contact-mobile-button { display: flex; }

        .contact-mobile-button__footer {
            display: block;
        }

        .contact-info-container__footer {
            display: flex;
            justify-content: center;
            padding-bottom: 1rem;
        }

        .contact-info-content__footer {
            display: none;
        }

        .contact-info-phone svg,
        .contact-info-phone span {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .contact-info-container__footer {
            /*flex-direction: column;*/
            flex-flow: wrap;
        }

        .contact-mobile-button__footer {
            width: 65%;
            margin: 0 auto;
            margin-bottom: 0.5rem;
        }
    }


    /*-----------------------------------
 * PARTNERS
 *-----------------------------------*/
    .h-partners-card { margin: 0 0 10px 0; background: #f0f2f7; }

    /*.h-partners-card__button:hover { cursor: pointer; }*/

    .h-partners-card:hover { margin-top: 0; }

    .h-partners-card .card-body { background: #fff; }

    .h-partners-card__button { display: flex; justify-content: space-between; background-color: transparent; padding: 0; text-transform: unset; align-items: center; }

        .h-partners-card__button:focus { box-shadow: none; }

    .h-partners-card__badge { display: flex; background-color: #7642FF; background-image: linear-gradient(90deg, #4259ff, #7642FF); color: #fff; padding: 10px 15px; border-radius: 20px; }

    .h-partners-card__badge__header { margin-bottom: 5px; font-size: 16px; }

    .h-partners-card__header__left { text-align: left; color: #3e396b; min-width: 0; white-space: normal; margin-right: 10px; }

    .h-partners__info-row { white-space: normal; }

    .h-partners-card__badge__left { padding-right: 10px; border-right: 1px solid #fff; min-width: 110px; }

    .h-partners-card__badge__right { padding-left: 10px; min-width: 110px; }

    .h-partners-card__badge__main { display: flex; align-items: center; justify-content: space-around; }

    .h-partners-card_badge-number { font-size: 37px; font-weight: 600; line-height: 32px; }

    .h-partners-card__badge__main i { font-size: 34px; }

    .h-certificate-item { display: flex; justify-content: space-between; background-color: #e8ecfe; padding: 10px; border-radius: 10px; margin-bottom: 10px; align-items: center; }

    .h-certificate-item__name { display: flex; align-items: center; }

        .h-certificate-item__name i { margin-right: 10px; color: #374dfb; }


    .h-certificates-container > div:last-of-type { margin-bottom: 0; }

    .h-cerfiticate-item__badge { background-color: #7642FF; color: #fff; padding: 5px 13px; border-radius: 6px; font-size: 18px; font-weight: 600; line-height: 24px; }

    /*** Loader ***/


    .m-loader { position: relative; }

        .m-loader:before { content: ''; box-sizing: border-box; position: absolute; top: 50%; left: 50%; border-top: 2px solid #07d; border-right: 2px solid transparent; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; -webkit-animation: m-loader-rotate 0.6s linear infinite; -moz-animation: m-loader-rotate 0.6s linear infinite; -ms-animation: m-loader-rotate 0.6s linear infinite; -o-animation: m-loader-rotate 0.6s linear infinite; animation: m-loader-rotate 0.6s linear infinite; }

        .m-loader:before { width: 1.4rem; height: 1.4rem; margin-top: -0.7rem; margin-left: -0.7rem; border-top-width: 2px; border-right-width: 2px; }

        .m-loader:before { border-top-color: #dfe2ea; }

        .m-loader m-loader--brand { margin-top:100px; }

        .m-loader.m-loader--brand:before { border-top-color: #716aca; }

    @-webkit-keyframes m-loader-rotate {
        to { transform: rotate(360deg); }
    }

    @-moz-keyframes m-loader-rotate {
        to { transform: rotate(360deg); }
    }

    @-o-keyframes m-loader-rotate {
        to { transform: rotate(360deg); }
    }

    @keyframes m-loader-rotate {
        to { transform: rotate(360deg); }
    }

    @media only screen and (max-width: 600px) {
        .h-partners-card__button { flex-direction: column; }

        .h-partners-card__header__left,
        .h-partners-card__header__right { width: 100%; }

        .h-partners-card__badge__left,
        .h-partners-card__badge__right { flex: 1; }

        .h-partners-card__badge { margin-top: 15px; }
    }

    .form-control { height: 30px; background-color: #fff !important; border-radius: 0; }

    .h-partners-header { display: flex; align-items: center; justify-content: space-between; }

    .dropdown > input:hover { cursor: pointer !important; }

    .h-partners-header__left { flex: 1; max-width: 690px; }

    .dropdown-menu { max-height: 40vh; overflow: auto; }

    @media only screen and (max-width: 992px) {
        .h-partners-header { flex-direction: column; }

        .h-partners-header__left { width: 100%; max-width: unset; }
    }

    @media only screen and (max-width: 575px) {
        .h-partners-header__left .form-control-label { text-align: left !important; }
    }

    /*# sourceMappingURL=style.css.map */


    .subscription-details-window { display: none; position: fixed; z-index: 10000; height: 100%; width: 100%; top: 0; left: 0; }
    .subscription-details-window.-visible { display: block; }

    .bg-overlay { background: #2615546b; width: 100%; height: 100vh; left: 0; top: 0; position: fixed; z-index: 100; display: none; }
    .subscription-details-window.-visible .bg-overlay { display: block; }

    .subscription-details { top: 0; left: 0; width: 100%; height: 100vh; overflow: auto; z-index: 100; background: #fff; padding: 30px; z-index: 100000; position: absolute; background: #fff; }

    @media (min-width: 1024px)  {
        .subscription-details { width: 75%; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 10px; height: auto; max-height: 100vh; }
        .section#pricing .card-text, .section.-seminars .card-text { display: flex; justify-content: center; }
    }

    @media (min-width: 1600px) {
        .subscription-details { width: 55%; }
    }


    .subscription-details__header { display: flex; justify-content: space-between; align-items: center; margin: 0 15px 20px 15px; }

    .subscription-details-show { color: #7642FF; opacity: .4; }
    .subscription-details-show,
    .subscription-details-show__container { cursor: pointer; display: flex; justify-content: center; padding-top: 1rem; text-align: left; }
    .subscription-details-show svg,
    .subscription-details-show__container svg { width: 24px; height: 24px; fill: #7642FF; margin-right: 5px; }


    .subscription-details-show__container span { display: flex; color: #7642FF; opacity: .4; }
        .subscription-details-show:hover,
        .subscription-details-show__container span:hover {
            opacity: 1;
        }
    .subscription-details-show__container span a { color: #7642FF; }

    .subscription-details-product { padding-left: 1.25rem; }

    .subscription-details-close { cursor: pointer; }
    .subscription-details-close svg { width: 30px; height: 30px; fill: rgba(106, 17, 203, 0.76); }
    .subscription-details-close:hover svg { width: 30px; height: 30px; fill: #7642FF; }

    .section#pricing,
    .section#pricing .card,
    .section#pricing .row,
    .section#pricing div[class*="col"] {
        position: static;
    }

    .section#pricing .link-container__header { margin-top: 50px; margin-bottom: 30px; }
    .section#pricing .link-container__header span { background: #f8faff; }
    .section#pricing .link-container__header:before { border-top: solid 1px #c8d2ea; }

    span[class*="-tag"] { color: #fff; display: inline-block; padding: 0 5px; line-height: 1.2; }
    span.themida-tag { background: #9c83a3; }
    span.hygeia-tag { background: #57c464; }
    span.architect-tag { background: #808285; }
    span.hoteliga-tag { color: #c80d0d; font-weight: 500; font-size: 2rem; }
    span.support-basic-tag { background: #1abc9c; }
    span.support-basic-tag2 { color: #1abc9c; background: #eaeeef; }
    span.entry-tag { background: #f1c40f; }
    span.standard-tag { background: #e67e22; }
    span.advanced-tag { background: #e74c3c; }
    span.philoxenia-tag { background: #687ed8 }
    span.support-tag { background: #e79723 }
    span.support-tag2 { background: #faecda; color: #e79723; }
    span.basic-tag { background: #e6e6e7; color: #687ed8; }
    span.basic-beauty-tag { background: #e6e6e7; color: #dd9bcc; }
    span.basic-transport-tag { background: #e6e6e7; color: #f1d52c; }
    span.basic-tameiaki-tag { background: #e6e6e7; color: #F93B01; }
    span.transport-tag { background: #f1d52c; }
    span.video-tag { background: #162EE4; }
    span.beauty-tag { background: #dd9bcc; }
    span.retail-tag { background: #e8ecfe; color:#a7a2ce; }
    span.banking-connector-tag { background: #cca55d; color:#007180; }
    span.skroutz-ready-tag { background: #F68C33; color:#fff; }
    span.tameiaki-tag { background: #F93B01; color:#fff; }
    span.solutions-tag { font-size: 22px; }

    span.req-highlight { color: #F93B01; font-weight: 600; }
    .tameiaki-buy-text { font-style: italic; }

    li.support-text { line-height: 1.4; font-size: .8em; padding: 10px; background: #eaeef766; margin: 15px 0 0 0; }
    
    #solutions {
        justify-content: center;
    }

    #solutions .col-lg-6 { margin-bottom: 20px; }
    #hotel-solutions .col-lg-6 { margin-bottom: 20px; }

    .powered-cardlink { font-size: 16px; display: flex; justify-content: center; }
    .powered-cardlink svg {margin-left: 0.5rem;}
        /*# sourceMappingURL=style.css.map */
        .btn-large { font-size: 21px; }

    .check-item { position: relative; padding: 0 0 0 50px; margin: 1rem 0; font-size: 1em; }
        .check-item svg { width: 40px; height: 40px; fill: #7642FF; position: absolute; left: 0; top: 0; }

    .mydata-header { font-size: 1.5rem; }

    .mydata-text,
    .subscriptions-text { font-size: 29px; }

    @media (min-width: 990px) {
        .mydata-header.-left { text-align: right; }
        .mydata-header.-right { text-align: left; }
    }

    
    a.card.pricing { color: #4558ff; }
    a.card.pricing .arrow { text-align: center; margin: 20px 0 0 0; }
    a.card.pricing svg { width: 50px; height: 50px; fill: #4558ff; }
    
    a.card.pricing:hover { background: #4558ff; color: #fff; }
    a.card.pricing:hover .text-muted { color: #fff !important; }
    a.card.pricing:hover svg { width: 50px; height: 50px; fill: #fff; }

    .external { margin-top: 3rem; margin-bottom: 5rem; }
    .external__container { display: flex; }
    .external__mydata,
    .external__microsoft-azure { width: 100%; height: auto; margin-right: 20px; margin-left: 10px; place-self: flex-end; }
    .external__microsoft-azure { width: 55%; }

    .landing-video .external__mydata { padding-top: 1rem; }

    .awards { display: flex; flex-direction: column; position: relative; flex-flow: row; }
    .awards__homepage { flex-direction: column; flex: none; }
    .award__img { margin-right: 25px; width: 100px; bottom: 15px; place-self: flex-start; padding-bottom: 0.5rem;}
    .cloud-computing-award { width: 120px; }
    .cloud-computing-award__title { width: 65%; }
    .witsa-award { width: 120px; }
    .award__text p,
    .award__text ul { font-size: 14px; }

    @media (max-width: 1199px) {
        .external__mydata { margin: 0; }

        .award__img { margin-right: 10px; }
        .award__text p,
        .award__text ul { font-size: 12px; }
    }

    @media (min-width: 992px) {
        #site-nav > ul > .nav-item.dropdown {
            margin-bottom: -20px;
        }

        #site-nav > ul > .nav-item.dropdown:hover {
            cursor: pointer;
        }
        #site-nav > ul > .nav-item.dropdown:hover > a {
            color: #314afb;
        }

        .dropdown .dropdown-menu {
            margin: 0;
            left: 8px;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }
    }

    @media (max-width: 1374px) {
        #site-nav > ul > .nav-item.dropdown {
            margin-bottom: -5px;
        }
    }

    @media (max-width: 991px) {
        .external { width: 100%; margin-top: 3rem; margin-bottom: 3rem; }
        .external__container { flex-direction: column; }
        .external__mydata { width: 80%; margin-left: 10px; place-self: auto; margin-bottom: 40px; place-self: center; }

        .awards { width: 80%; margin-left: 15px; margin-bottom: 1.5rem; place-self: center; }
        .awards__homepage { flex-direction: row; }
        .award__img { margin-right: 40px; min-width: 120px; }
        .cloud-computing-award { width: 200px; }
        .cloud-computing-award__title { width: 100%; }
        .witsa-award { width: 300px; }

        .awards.-awards_hygeia {
            width: 100%;
        }

        .dropdown-menu {
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            -webkit-box-shadow: none;
            box-shadow: none;
            background-color: #f9f9f9;
        }
        .dropdown-item { padding: 5px 2rem 5px 2rem; }
    }

    @media (max-width: 767px) {
        .external__mydata,
        .awards { width: 90%; }

        .award__img { margin-right: 30px; }
        .cloud-computing-award { width: 250px; }
        .award__text ul { padding-left: 25px; }
    }
    
    @media (max-width: 425px) {
        .awards__homepage {
            flex-direction: column;
        }

        .award__img {
            width: 120px;
        }
    }
    
    @media (max-width: 414px) {
        .award__img { margin-right: 20px; }
    }

.free-month { color: #7642FF; font-size: .8rem; font-weight: 500; margin: 0.5rem 0 1rem 0; }


.section.-seminars { padding-top: 0; }
.section.-seminars .container-fluid { background: #e8ecfe; padding: 2rem; }

.section.-video-training .container-fluid {
        padding-top: 2rem;
}

@media (min-width: 1500px) {
    .section.-seminars .container-fluid {
        padding: 2rem 10rem;
    } 
}

.section.-seminars .container-fluid h2 { color: #3e396b; }

.section.-seminars .container-fluid .row { justify-content: center; }


.card.-seminar { position: relative; border-radius: 10px; border: none; margin-bottom: 1rem; height: calc(100% - 1rem); }
.card.-seminar .card-body { flex-direction: row; padding: 1rem; align-items: flex-start; }
.card.-seminar .card-footer { text-align: center; background: none; border: none; padding: 0 1rem 1rem 1rem; }
.card.-seminar small { display: block; text-align: center; padding-bottom: 10px; }
.seminar__date { display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid #344afb; min-width: 70px; border-radius: 10px; overflow: hidden; background: #fff; margin-right: 1rem; }
.seminar__day { background: #344afb; width: 100%; text-align: center; color: #fff; }
.seminar__num { font-weight: 600; font-size: 2.5rem; line-height: 1; color: #344afb; }
.seminar__mon { font-weight: 600; color: #344afb; }
.seminar__title { font-size: 1.2rem; font-weight: 600; text-align: center; }

.-video-seminar .card.-seminar {
    height: auto;
}

.-hygeia .seminar__date {
    border-color: #57c464;
}
.-hygeia .seminar__day { background: #57c464; }
.-hygeia .seminar__num { color: #57c464; }
.-hygeia .seminar__mon { color: #57c464; }
.-hygeia .btn-outline-primary { color: #57c464; border-color: #57c464; }
.-hygeia .btn-outline-primary:hover { background: #57c464; color: #fff; }

.-philoxenia .seminar__date { border-color: #687ed8; }
.-philoxenia .seminar__day { background: #687ed8; }
.-philoxenia .seminar__num { color: #687ed8; }
.-philoxenia .seminar__mon { color: #687ed8; }
.-philoxenia .btn-outline-primary { color: #687ed8; border-color: #687ed8; }
.-philoxenia .btn-outline-primary:hover { background: #687ed8; color: #fff; }



.-themida .seminar__date { border-color: #9c83a3; }
.-themida .seminar__day { background: #9c83a3; }
.-themida .seminar__num { color: #9c83a3; }
.-themida .seminar__mon { color: #9c83a3; }
.-themida .btn-outline-primary { color: #9c83a3; border-color: #9c83a3; }
    .-themida .btn-outline-primary:hover { background: #9c83a3; color: #fff; }

.-architect .seminar__date { border-color: #808285; }
.-architect .seminar__day { background: #808285; }
.-architect .seminar__num { color: #808285; }
.-architect .seminar__mon { color: #808285; }
.-architect .btn-outline-primary { color: #808285; border-color: #808285; }
    .-architect .btn-outline-primary:hover { background: #808285; color: #fff; }

.transport .seminar__date { border-color: #f1d52c; }
.transport .seminar__day { background: #f1d52c; }
.transport .seminar__num { color: #f1d52c; }
.transport .seminar__mon { color: #f1d52c; }
.transport .btn-outline-primary { color: #af9a1a; border-color: #f1d52c; }
    .transport .btn-outline-primary:hover { background: #f1d52c; color: #000; }

.seminar-archive { list-style: none; margin: 0; padding: 0; display: flex; column-gap: 1rem; flex-wrap: wrap; }
.seminar-archive li { padding-bottom: 1rem; }
.seminar-archive a { background: #57c464; color: #fff; padding: .3rem .45rem; border-radius: 6px; line-height: 1; display: inline-block; border: 1px solid #fff; }
.seminar-archive a:hover { background: #fff; color: #57c464; border: 1px solid #57c464; }
.-philoxenia .seminar-archive a { background: #687ed8; }
.-philoxenia .seminar-archive a:hover { background: #fff; color: #687ed8; border: 1px solid #687ed8; }
.-themida .seminar-archive a { background: #9c83a3; }
.-themida .seminar-archive a:hover { background: #fff; color: #9c83a3; border: 1px solid #9c83a3; }
.-architect .seminar-archive a { background: #808285; }
.-architect .seminar-archive a:hover { background: #fff; color: #808285; border: 1px solid #808285; }
.-transport .seminar-archive a { background: #f1d52c; }
.-transport .seminar-archive a:hover { background: #fff; color: #f1d52c; border: 1px solid #f1d52c; }

@media (max-width: 380px) {
    .seminar-title {
        text-align: center;
    }

    .seminar-archive {
        justify-content: center;
    }
}

.center-content { justify-content: center; }

.pricing .card-excerpt {
    min-height: 75px;
    font-weight: bold;
}


.pricing.-highlighted {
    -webkit-box-shadow: 3px 8px 25px 1px #B5B5B5;
    box-shadow: 3px 8px 25px 1px #B5B5B5;
}

.card-button__buy {
    margin-bottom: 1rem;
}

.card-button {
    margin-bottom: 20px;
}

.card-button.simple {
    text-decoration: underline;
}

.solution-description,
.subscription-description,
.partner-description,
.feature-description,
.contact-description,
.cardlink-description,
.accountant-description {
    font-size: 29px;
}

.solution-description-strong,
.landing-description-strong,
.feature-description-strong,
.accountant-description-strong {
    color: #7642FF;
}

.comparison-list {
    text-align: left;
}

.background-secondary {
    background-color: #e8ecfe;
}

.two-way-communication {
    background-color: #f8faff;
    padding: 0.5rem 0 1.5rem 0;
}

.partner-second-description {
    font-size: 21px;
}

.partner-button,
.accountant-button {
    float: left;
}

.partner-contact {
    padding-top: 30px !important;
}

.partner-contact .media {
    margin-bottom: 50px;
}

.media-body-content,
.accountant-info-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.filtered-partner,
.feature-info,
.accountant-info {
    padding-top: 15px;
}

.landing-title {
    line-height: 1.2;
}

.landing-description {
    font-size: 1.8rem;
}

.landing-button {
    display: flex;
}

.landing-reason-title {
    line-height: 1.2;
    text-align: center;
    font-size: 2.2rem;
}

.landing-reason-title-strong {
    color: #3b49fa;
}

.landing-reason-text a:hover {
    text-decoration: underline;
}

.feature-info-title {
    font-size: 27px;
}

.feature-tab-content {
    padding-bottom: 1rem;
}

.contact-comments {
    height: 115px;
}

.contact-comments::-webkit-resizer {
    padding-right: 10px;
}

.accountant-mydata {
    padding-top: 2em;
    padding-bottom: 2em;
}

.accountant-info-content {
    font-size: 21px;
}

.support-basic,
.support-entry,
.support-standard,
.support-advanced {
    min-height: 75px;
    font-weight: bold !important;
}

.card-title2.support-basic,
.card-title2.support-entry {
    margin-bottom: 25px;
}


@media (max-width: 767px) {
    .feature-tab-content {
        padding-top: 1rem;
        padding-bottom: 0;
    }
}


/** Client counter */

.counter__content {
    display: block;
    padding: 20px;
    text-align: center;
}

.counter__content.count-text {
    padding: 0;
    color: #909090;
    font-size: 14px;
    font-weight: 500;
}

.counter-title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.counter,
.counter-text {
    font-size: 68px;
    font-weight: 400;
    color: #fff;
}

.counter-text {
    margin-left: 30px;
}

.count-subtitle {
    font-size: 40px;
    font-weight: 600;
    padding-top: 10px;
    color: #fff;
}

@media (max-width: 997px) {
    .counter-text {
        margin-left: 10px;
    }

    .count-subtitle {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .count-subtitle {
        font-size: 4vw;
    }
}

/** Feature */

.feature-product-info-title {
    font-size: 32px;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 500;
}

.feature-tab-content picture img {
    width: 70%;
}

.border-after{
    padding-bottom: 10px;
}

#nav-tabContent .border-after:nth-child(odd) .feature-tab-content {
    text-align: right;
}

#nav-tabContent .border-after:nth-child(even) .feature-tab-content {
    text-align: left;
}

#nav-tabContent .border-after:nth-child(odd) .feature-image {
    text-align: left;
}

#nav-tabContent .border-after:nth-child(even) .feature-image {
    text-align: right;
}

@media (max-width: 767px) {
    #nav-tabContent .border-after:nth-child(even) {
        flex-direction: column-reverse;
    }

    #nav-tabContent .border-after .feature-tab-content,
    #nav-tabContent .border-after .feature-image {
        text-align: center !important;
    }
}




/** Landing */


.one-app-title {
    color: #3b49fa;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
}

.image-direction {
    text-align: right;
}

.feature-tabs .one-app-tab-content h2 {
    color: #3b49fa;
    font-weight: 400;
}

.feature-tabs .banking-connector-tab-content h2 {
    color: #3e396b;
    font-weight: 400;
}

.one-app-tab-content picture img {
    width: 80%;
}

.one-app-container .border-after {
    padding-bottom: 30px;
}

.counter__container {
    background-color: #7642FF;
    background-image: -webkit-gradient(linear, left top, right top, from(#7642FF), to(#4259ff));
    background-image: -webkit-linear-gradient(left, #7642FF, #4259ff);
    background-image: -o-linear-gradient(left, #7642FF, #4259ff);
    background-image: linear-gradient( 90deg, #7642FF, #4259ff);
}

.landing-video {
    margin: 50px 50px 0 50px;
    font-size: 20px;
}

.homepage__microsoft-title {
    font-size: 18px;
}

@media (max-width: 991px) {
    .counter, .counter-text {
        font-size: 6vw;
    }
}

@media (max-width: 767px) {
    .one-app-container .border-after:nth-child(even) {
        flex-direction: column-reverse;
    }

    .one-app-tab-content picture img {
        width: 100%;
    }

    .image-direction {
        text-align: left;
    }

    .landing-video {
        margin: 0;
    }

    .counter, .counter-text {
        font-size: 7vw;
    }

    .counter, .counter-text {
        display: flex;
        justify-content: center;
        font-size: 9vw;
    }

    .counter-text {
        margin-left: 0;
    }

    .counter__content {
        padding: 0;
    }
}


/** Solutions */
.subscription-details-show.characteristics-link {
    opacity: 0.8;
    font-size: 20px;
    line-height: 20px;
    padding-top: 20px;
    padding-block: 20px;
}
.subscription-details-show.characteristics-link:hover {
    opacity: 1;
}

.product-image {
    justify-content: center;
}

.solutions__container-hygeia {
    padding-top: 3rem;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .solutions__container-hygeia {
        padding-top: 0;
    } 
}

.solutions__subscription-container {
    display: flex;
    align-items: flex-end;
}

.solution__price {
    display: flex;
    justify-content: center;
}

.solution__price .skroutz-ready {
    width: 400px;
}

.solution__price .skroutz-ready__text {
    font-size: 16px;
    font-weight: 600;
    color: #0e0e1c;
}

.skroutz-ready-product__container {
    display: flex;
}

.skroutz-ready__discount-button {
    border: 2px solid #f68c33;
    color: #f68c33;
    font-weight: 600;
}

.skroutz-ready__discount-button:hover {
    background-color: #f68c33;
    border: 2px solid #f68c33;
    color: #fff;
}


.hotel-availabilities__discount-button {
    border: 2px solid #64c8d3;
    color: #64c8d3;
    font-weight: 600;
}

.hotel-availabilities__discount-button:hover {
    background-color: #64c8d3;
    border: 2px solid #64c8d3;
    color: #fff;
}

.smart-hygeia__discount-button {
    border: 2px solid #008b90;
    color: #008b90;
    font-weight: 600;
}

.smart-hygeia__discount-button:hover {
    background-color: #008b90;
    border: 2px solid #008b90;
    color: #fff;
}

.epsilonsmartplus__discount-button {
    border: 2px solid #162EE4;
    color: #162EE4;
    font-weight: 600;
    padding: 15px 45px;
}

.epsilonsmartplus__discount-button:hover {
    background-color: #162EE4;
    border: 2px solid #162EE4;
    color: #fff;
}

.smart-eshop__discount-button {
    border: 2px solid #3E4FFF;
    color: #3E4FFF;
    font-weight: 600;
}

.smart-eshop__discount-button:hover {
    background-color: #3E4FFF;
    border: 2px solid #3E4FFF;
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#1c267b), to(#3E4FFF));
    background-image: -webkit-linear-gradient(left, #1c267b, #3E4FFF);
    background-image: -o-linear-gradient(left, #1c267b, #3E4FFF);
    background-image: linear-gradient(90deg, #1c267b, #3E4FFF);
}

@media (max-width: 991px) {
    .solution__price {
        display: block;
    }

    .skroutz-pricing {
        padding-bottom: 2rem;
    }
}

@media (max-width: 500px) {
    .skroutz-ready-product__container {
        display: block;
    }
    .solution__price .skroutz-ready {
        width: 100%;
    }
}

.solutions__container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    box-shadow: 0px 8px 7px -9px rgb(0 0 0 / 15%);
}

.solutions__container:hover {
    box-shadow: 0px 8px 7px -9px rgb(0 0 0 / 30%);
    transition: .1s all ease-in-out;
}

.solutions__standard {
    /*margin-right: 1.5rem;*/
}

.solutions__standard,
.solutions__advanced {
    margin-top: -2rem;
}

.solutions__learnmore-button {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .solutions__subscription-container {
        display: flex;
    }
}

.solutions__subscription-price {
    font-size: 55px;
    font-weight: 600;
    color: #7642FF;
    position: relative;
    top: 15px;
}

.solutions__subscription-description {
    font-size: 18px;
    font-weight: 600;
    color: #3b49fa;
    align-self: flex-end;
    padding-left: 0.5rem;
    line-height: 1.2;
}

.solutions__month-subscription {
    color: #7642FF;
    font-size: 12px;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
    border-bottom: 1px solid #7642ff61;
}

.solutions__month-subscription:hover {
    color: #fff;
    background-image: linear-gradient(90deg, #4259ff, #7642FF);
}

.solutions__video,
.solutions__image {
    align-self: flex-start;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .solutions__video.-solutions__video-hygeia {
        align-self: center;
    }
}

.solutions__image {
    margin: 0 auto;
}

.container__advantage,
.container__workshops {
    background-color: #e8ecfe;
}

.solutions__action > .card-button {
    margin: 0;
}

.solutions__action > .card-button__buy {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.solutions__double-price-text {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    place-self: flex-end;
    padding-left: 10px;
}

@media (max-width: 456px) {
    .solutions__subscription-container {
        flex-direction: column;
    }

    .solutions__subscription-price {
        width: 100%;
        top: 0;
    }

    .solutions__subscription-description {
        padding-left: 0;
        font-size: 16px;
    }

    .solutions__double-price {
        padding-top: 1rem;
        top: 10px;
    }

    .solutions__container-tameiaki .solutions__double-price {
        padding-top: 0;
    }
}

.homepage__buy-button {
    width: 235px;
    font-size: 16px;
}

.homepage__buy-button-subtitle {
    width: 235px;
    text-align: center;
    padding-top: 0.5rem;
    color: #7642ff;
}

.homepage__more-button {
    font-size: 12px;
}

.homepage__more-button:nth-child(2) {
    padding-left: 28px;
    padding-right: 28px;
}

.container__features .card-text {
    display: flex;
}

.container__features .card-text > .list-unstyled.comparison-list:first-child {
    width: 100%;
    padding-right: 2rem;
}

.section.-seminars.container__pricing .container-fluid {
    background-color: #F8FAFF;
}

.container__pricing .link-container__header > span > span,
.container__pricing .link-container__header > span {
    background: #F8FAFF;
}

.container__pricing .link-container__header:before {
    border-top: solid 1px #c8d2ea;
}

.solutions__container-price {
    display: flex;
}

.container__features .container__features-content.philoxenia-content {
    display: flex;
}

.container__features-content.philoxenia-content .list-unstyled.comparison-list {
    padding-right: 2rem;
    width: 100%;
}
.container__features-content.philoxenia-content .col-12:nth-child(2) .list-unstyled.comparison-list:nth-child(2) {
    padding-right: 0;
}

.container__pricing .card:hover {
    margin-top: 0;
}

.philoxenia-price .col-lg-6 {
    text-align: center;
}
.philoxenia-price .text-muted {
    font-size: 20px;
}

.container-full.container__pricing {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 1800px) {
    .container-full.container__pricing {
        padding-left: 100px;
        padding-right: 100px;
    }
} 

@media (min-width: 768px) and (max-width: 1199px) {
    .solutions__action > .card-button {
        margin-bottom: 10px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .solutions__standard .solutions__subscription-container,
    .solutions__advanced .solutions__subscription-container {
        flex-direction: column;
    }

    .solutions__standard .solutions__subscription-price,
    .solutions__advanced .solutions__subscription-price {
        width: 100%;
        top: 0;
    }
    
    .solutions__subscription-price {
        width: 50%;
        top: 0;
    }

    .solutions__subscription-description {
        padding-left: 0;
        font-size: 16px;
    }

    .solutions__standard,
    .solutions__advanced {
        margin-top: 0;
    }

    .solutions__standard {
        margin-right: 0;
    }
}


@media (max-width: 991px) {
    .container__features .container__features-content {
        flex-direction: column;
        max-width: 100%;
    }

    .container__features-content.philoxenia-content .list-unstyled.comparison-list:nth-child(2n+0) {
        padding-right: 0;
    }

    .solutions__container-price .philoxenia-basic-buy {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .solutions__container-price {
        flex-direction: column;
    }

    .solutions__container-price .philoxenia-basic-buy {
        margin-top: 0;
    }

    .solutions__standard {
        margin-right: 0;
    }
}


@media (max-width: 588px) {
    .container__features .card-text > .list-unstyled.comparison-list:first-child {
        padding-right: 2rem;
    }
}

@media (max-width: 499px) {
    .container__features .card-text {
        flex-direction: column;
    }

    .container__features .card-text > .list-unstyled.comparison-list:first-child {
        padding-right: 0;
    }
}

@media (max-width: 376px) {
    .solutions__action > .card-button {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 365px) {
    .solutions__action {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .solutions__action > br {
        display: none;
    }
}

/** Videos */
.-video-vertical {
    font-size: 28px;
}

.-video-vertical .text-muted > span {
    margin-bottom: 1.5rem;
}

.link-container__header-text {
    font-size: 32px;
}

.-video-main {
    font-size: 32px;
}

.-video-main span.video-tag {
    margin-bottom: 1.5rem;
}

.-video-training .link-container__header span {
    background: #f8faff;
}

.-video-training p {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3e396b;
}

.-video-training p.video-training__single-product {
    font-size: 21px;
}

@media (max-width: 1199px) {
    .-video-training p {
        font-size: 19px;
    }

    .-video-training p.video-training__single-product {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .-video-training div.row {
        align-items: flex-end;
    }

    .-video-main {
        font-size: 28px;
    }
}

@media (max-width: 408px) {
    .-video-vertical {
        font-size: 24px;
    }
}


.subscriptions-solution-title {
    text-align: center;
    padding-bottom: 1rem;
}

.solutions-comparison__container .section {
    padding: 1rem 0 0 0 !important;
}

.solutions-comparison__separator {
    height: 6rem;
    background-color: #fff;
}

.index_epsilon-digital .digital-logo {
    height: 115px;
}

.index_epsilon-digital .link-box__container {
    text-align: left;
}

.index_epsilon-digital .digital-logo__container {
    text-align: center;
}


.index_epsilon-digital .index_epsilon-digital-title {
    font-size: 32px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .index_epsilon-digital .digital-logo {
        height: 90px;
    }
}

@media (max-width: 767px) {
    .index_epsilon-digital .digital-logo {
        height: 120px;
    }

    .index_epsilon-digital .media-body > .row {
        flex-flow: column;
    }

    .index_epsilon-digital .link-box__container {
        text-align: center;
    }
}

.bite-awards {
    display: flex;
}

.voucher__container {
    background-image: url(../images/voucher/voucher-bg-purple.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.voucher__container:hover {
    box-shadow: 0 0 15px rgb(118 66 255 / 65%);
    transition: all 0.3s ease;
}

.voucher {
    justify-content: space-between;
}

.voucher p {
    width: 100%;
    margin: 0;
    padding: 1rem 0 2rem 5.5rem;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    justify-content: center;
}

.voucher__icons {
    display: flex;
    padding-left: 3rem;
    width: 70%;
}

.voucher__icons img {
    padding-right: 1rem;
}

.voucher-discount__text-conainer {
    margin: 0;
    padding: 1rem 3rem 1rem 3rem;
    color: #00FFF5;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    width: 100%;
}

.voucher-discount__text {
    align-self: center;
    font-size: 23px;
    display: flex;
    justify-content: space-between;
}

.voucher-discount__text p {
    margin: 0;
    padding-left: 1rem;
    color: #ffca08;
    font-size: 60px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    margin-top: -8px;
}

.voucher-discount__text-content {
    padding-bottom: 1.5rem;
    width: 90%;
}

.voucher-discount__text-content.deadline-text {
    color: #fff;
    padding-bottom: 0.75rem;
}

.voucher-discount__text.percent-text {
    flex-direction: column;
}

.voucher-discount__text.percent-text span > span {
    font-size: 87px;
}

.voucher-discount__text.percent-text.mobile-view {
    display: none;
}

.voucher-discount__text.e-invoice {
    flex-direction: column;
    height: 100%;
}

@media (min-width: 1200px) {
    .voucher-discount__text.e-invoice {
        width: 66%;
    }
}

@media (max-width: 991px) {
    .voucher-discount__text-content {
        padding-bottom: 1rem;
        width: 100%;
    }

    .voucher-discount__text-content.deadline-text {
        padding-top: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .voucher-discount__text-conainer {
        flex-direction: column;
    }
    .voucher-discount__text.percent-text span strong {
        font-size: 30px;
    }

    .voucher-discount__text.percent-text.mobile-view {
        display: block;
        line-height: 1;
        padding-bottom: 1rem;
        width: 100%;
    }
    
    .voucher-discount__text.percent-text.desktop-view {
        display: none;
    }
}

@media (max-width: 767px) {
    .voucher-discount__text-conainer {
        padding: 1rem 0 1rem 0;
    }

    .voucher-discount__text.percent-text.mobile-view span {
        display: flex;
        flex-direction: column;
        padding-top: 1rem;
    }
}

@media (max-width: 375px) {
    .voucher-discount__text.percent-text span > span {
        font-size: 80px;
    }
}


.voucher__button {
    text-align: center;
    padding-top: 1rem;
}

.voucher__button a {
    background-color: #5f4a8d;
    background-image: -webkit-gradient(linear, left top, right top, from(#5f4a8d), to(#2e1154));
    background-image: -webkit-linear-gradient(left, #5f4a8d, #2e1154);
    background-image: -o-linear-gradient(left, #5f4a8d, #2e1154);
    background-image: linear-gradient(90deg, #5f4a8d, #2e1154);
}

.voucher__button a:hover {
    color: #fff;
    background-color: #5f4a8d;
    background-image: -webkit-gradient(linear, left top, right top, from(#2e1154), to(#5f4a8d));
    background-image: -webkit-linear-gradient(left, #2e1154, #5f4a8d);
    background-image: -o-linear-gradient(left, #2e1154, #5f4a8d);
    background-image: linear-gradient(90deg, #2e1154, #5f4a8d);
}

@media (max-width: 1199px) {
    .voucher__icons {
        padding-left: 1rem;
    }

    .voucher p {
        padding-left: 3.5rem;
    }
}

@media (max-width: 991px) {
    .voucher__container {
        background-image: url(../images/voucher/voucher-bg_720-purple.jpg);
    }

    .voucher {
        flex-direction: column-reverse;
        padding-top: 1.5rem;
    }
    
    .voucher p {
        text-align: center;
        padding-left: 0;
    }

    .voucher__icons {
        padding-left: 0;
        width: 100%;
        justify-content: center;
    }

    .voucher-discount__text-breakline {
        display: none;
    }
}

@media (max-width: 767px) {
    .voucher__container {
        background-position: top;
        background-image: url(../images/voucher/voucher-bg_508-1029-purple.jpg);
    }

    .voucher-discount__text {
        flex-direction: column;
        text-align: center;
    }

    .voucher-discount__text p {
        padding-top: 1rem;
    }

    .voucher__icons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .voucher__icons img {
        padding-bottom: 1.5rem;
    }

    .ellada2 {
        padding-right: 0;
        margin-right: 1rem;
    }
}

@media (max-width: 767px) {
    .voucher p {
        padding-left: 0;
    }
}

.skroutz-ready__container {
    display: flex;
}

.skroutz-ready-text__container {
    margin: 0 auto;
}

.skroutz-ready {
    max-width: 200px;
    margin: 0 auto;
}


.skroutz-ready__text {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #0e0e1c;
    padding-left: 1rem;
    padding-right: 1rem;
}

.skroutz-ready-text__container:first-child .skroutz-ready__text {
    padding-top: 2rem;
}

@media (max-width: 991px) {

    .skroutz-ready__container {
        flex-direction: column;
    }

    .skroutz-ready-text__container:first-child {
        padding-bottom: 3rem;
    }

   .skroutz-ready-text__container:first-child .skroutz-ready__text  {
        padding-top: 0;
    }
}

.my-data .external__container {
    justify-content: center;
}

.external.my-data,
.external.microsoft-azure {
    display: flex;
}

.external.microsoft-azure {
    justify-content: center;
}

.external.microsoft-azure .external__container {
    flex-direction: column;
    text-align: center;
    font-size: 24px;
}

.microsoft-azure .external__microsoft-azure {
    margin: 0 auto;
}


@media (max-width: 991px) {
    .bite-awards {
        flex-direction: column;
    }

    .external.my-data {
        flex-direction: column;
    }

    .external__container {
        place-self: center;
    }
    
    .external__container span {
        text-align: center;
        padding: 0 10px 0 10px;
    }

    .external__microsoft-azure {
        margin: 0 auto;
    }
}

@media (max-width: 376px) {
    .external.microsoft-azure .external__container {
        font-size: 18px;
    }
}
/*
#components-reconnect-modal {
    display: none;
}

#components-reconnect-modal.components-reconnect-show {
    display: block;
}*/

.banking-connector__header {
    background-repeat: no-repeat;
    background-image: url(../images/banking-connector/banking-connector-container-bg.webp), linear-gradient(138deg, rgba(75,79,240,1) 52%, rgba(157,74,252,1) 100%);
    min-height: 450px;
    background-position: right;
}

.skroutz-ready__header {
    background-repeat: no-repeat;
    min-height: 450px;
    background-position: right;
    background-color: #ECECEC;
}

.ha__header {
    background-repeat: no-repeat;
    background-image: url(../images/hotel-availabilities/ha-banner-header.webp);
    min-height: 450px;
    background-position: right;
    background-color: #4c50e9;
}

.ha__header-info {
    color: #fff;
}

.ha-epsilon-img {
    text-align: right;
}

.smart-hygeia__header {
    background-image: url(../images/smart-hygeia/smart-hygeia-header.webp) !important;
    background-position: center !important;
    background-size: cover;

}

@media (min-width: 1920px) {
    .ha__header {
        background-position: center;
    }
}

@media (max-width: 1590px) {
    .ha-epsilon-img {
        text-align: center;
    }
}

@media (max-width: 1300px) {
    .ha__header {
        background-position: right;
    }

    .ha-epsilon-img {
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .ha-epsilon-img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .ha__header {
        background-image: url(../images/hotel-availabilities/ha-banner-header-760.webp);
        min-height: 560px;
        background-position: right;
    }
}

@media (max-width: 450px) {
    .ha__header {
        background-image: url(../images/hotel-availabilities/ha-banner-header-450.webp);
        min-height: 745px;
    }

    .ha-epsilon-img {
        text-align: center;
        padding-bottom: 6rem;
    }
}


.epsilonsmartplus__header {
    display: flex;
    background-repeat: no-repeat;
    background-image: url(../images/epsilon-smart-plus/epsilon-smart-plus_bg-reverse.webp);
    min-height: 450px;
    background-position: left;
    background-color: #2e1154;
}

.smart-eshop__header {
    display: flex;
    background-image: url(../images/smart-eshop/smart-eshop-bg.webp);
    background-color: #1c267b;
    padding: 0.5rem;
    background-size: cover;
}

.smart-eshop__header .container {
    display: flex;
}

.smart-eshop__header-info {
    color: #fff;
}

.epsilonsmartplus__header > .container {
    display: flex;
}

.banking-connector__header-info {
    height: 350px;
}

.banking-connector__header-info .display-8 small,
.skroutz-ready__header-info .display-8 small {
    color: #007180;
    background-color: #fff;
    padding-right: 5px;
}

.skroutz-ready__header-info .display-8 small {
    color: #000;
}

.banking-connector__header-info .display-8 .banking-connector-tag,
.skroutz-ready__header-info .display-8 .skroutz-ready-tag {
    padding-top: 1px;
}

.banking-connector__header-info h5 {
    font-weight: 100;
    color: #d9d9d9;
}

.skroutz-ready__feature {
    padding-top: 1rem;
}

.banking-connector__feature-title
.skroutz-ready__feature-title {
    font-weight: 600;
    font-size: 2.3rem;
}

.skroutz-ready__feature-slogan {
    text-align: center;
    color: #3b3b3b;
    font-weight: 100;
    padding-top: 2rem;
}

.banking-connector__feature .card.pricing {
    background-color: #f7f6fe;
}

.banking-connector__feature .card.pricing:hover {
    box-shadow: none;
}

.skroutz-ready__feature .card.pricing {
    background-color: #ECECEC;
}

.skroutz-ready__feature .card.pricing:hover {
    box-shadow: none;
}

.epsilonsmartplus__feature .card.pricing {
    background-color: #fff;
}

.skroutz-ready-icon {
    width: 200px;
}

h3.skroutz-info-title {
    font-weight: 600;
    padding-bottom: 1rem;
}

h3.skroutz-info-title:after,
h3.smart-eshop-info-title:after {
    content: "";
    width: 165px;
    height: 3px;
    background: #f68c33;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
}

h3.smart-eshop-info-title:after {
    background: #3E4FFF;
}

h3.hotel-availabilities-info-title:after {
    background: #64c8d3;
}

h3.smart-hygeia-info-title:after {
    background: #008b90;
}

h3.epsilonsmartplus-info-title:after {
    background: #162EE4;
}

.-smart-voucher-highlight {
    color: #162EE4;
}

.skroutz-ready-card .card-title img,
.epsilonsmartplus-card .card-title img {
    display: block;
    height: auto;
    border: 0;
    width: 75px;
    max-width: 100%;
    margin: 0 auto;
}

.smart-eshop__card {
    /*display: flex;*/
    min-height: 105px;
}

.smart-eshop__card-get-now .smart-eshop__card {
    display: flex;
    min-height: 60px;
}

.smart-eshop__card-get-now .smart-eshop__card .card-title {
    width: 60px;
    padding-top: 0.4rem;
}

.smart-eshop__card .card-text {
    padding-top: 0.7rem;
}

.smart-eshop__card .card-title img {
    width: 35px;
}

.smart-eshop__card-get-now .smart-eshop__card .card-title img  {
    width: 40px;
/*    margin-bottom: 1rem;
    margin-right: 4rem;*/
}

.epsilonsmartplus-card .card-title img {
    width: auto;
}

.skroutz-epsilon-img {
    text-align: right;
}

.skroutz-epsilon-img img {
    width: 50%;
}

.banking-price__container .card.pricing {
    border-bottom: 1px solid #9e9e9e;
}

.banking-price__container .card.pricing:hover {
    box-shadow: none;
}

.skroutz-ready-price__container .card.pricing {
    border-bottom: 1px solid #9e9e9e;
    background-color: #ececec;
}

.skroutz-ready-price__container .card.pricing:hover {
    box-shadow: none;
}

.ha-price__container .card.pricing {
    height: 90%;
    padding: 1rem;
}

.ha-title__container {
    text-align: center;
    font-size: 22px;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.ha-title__container strong {
    font-size: 26px;
}

@media (max-width: 991px) {
    .ha-edition-2 {
        margin-top: 2rem;
    }
}

.epsilonsmartplus-icon {
    width: 150px;
    padding-bottom: 1rem;
}

.epsilonsmartplus-text {
    color: #00fff5;
    font-size: 35px;
    font-weight: 600;
}

.epsilonsmartplus-text__plus {
    color: #fff;
    margin-bottom: 3rem;
}

.epsilonsmartplus__slogan {
    margin-bottom: 1rem;
}

.epsilonsmartplus-text.percent-text {
    display: flex;
    justify-content: end;
    flex-direction: column;
    line-height: 1;
    margin-top: 3rem;
}

.epsilonsmartplus-text.percent-text > span {
    font-size: 115px;
}

.epsilonsmartplus__banner-badge {
    color: #00fff5;
    width: 130px;
    height: 130px;
    text-align: center;
    font-size: 14px;
    background-color: transparent;
    line-height: 1.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -2rem;
    margin-top: 1.5rem;
    border: 2px solid #00fff5;
}

.epsilonsmartplus__list {
    display: flex;
    padding-bottom: 1.25rem;
}

.epsilonsmartplus__list svg {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    fill: #162EE4;
    align-self: center;
    padding-left: 0.55rem;
    padding-top: 0.5rem;
    padding-right: 0.25rem;
    border: 1px dashed #162ee42b;
}

.epsilonsmartplus__list span {
    font-size: 22px;
    font-weight: 600;
    padding-left: 0.75rem;
    padding-top: 0.15rem;
}

.smarteshop__list {
    padding-bottom: 1.75rem;
}

.smarteshop__list img {
    width: 35px;
    height: 35px;
}

.smarteshop__list span {
    padding-top: 0;
    padding-left: 1.25rem;
}

.banking-connector__ngb-info {
    padding: 0 1rem 0 1rem;
}

.banking-connector__ngb-info .external__container p {
    text-align: left;
}

.banking-connector__ngb-info .external__container img {
    width: 240px;
    height: 95px;
    max-width: 80%;
    margin: 1.25rem;
}

.epsilonsmartplus__header .skroutz-epsilon-img {
    display: flex;
    height: 100%;
}

.skroutz-epsilon-img .voucher__icons {
    justify-content: end;
    padding-left: 0;
    width: 100%;
    padding-top: 1.5rem;
}

.epsilonsmartplus__header .skroutz-epsilon-img img {
    width: 30%;
}

.epsilonsmartplus__header .epsilonsmartplus__logo {
    width: 300px;
}

.percent-text__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2rem;
}

@media (max-width: 1300px) {
    .banking-connector__header, .skroutz-ready__header {
        background-position: center;
    }

    .smart-eshop__header {
        background-position: right;
    }
}

@media (max-width: 1199px) {
    .skroutz-epsilon-img .voucher__icons {
        justify-content: center;
    }
}

@media (max-width: 991px) {  
    .banking-connector__ngb-info .external__container img {
        max-width: 100%;
    }

    .skroutz-ready__header-info {
        padding-bottom: 1rem;
    }

    .skroutz-epsilon-img img {
        width: 80%;
    }

    .epsilonsmartplus__header .skroutz-ready__header-info {
        padding-bottom: 0;
    }

    .skroutz-epsilon-img {
        text-align: center;
    }

    .epsilonsmartplus-text__plus {
        margin-right:0;
    }

    .percent-text__container {
        justify-content: normal;
        padding: 0;
        flex-direction: column-reverse;
    }

    .epsilonsmartplus__header .skroutz-epsilon-img {
        height: auto;
    }

    .epsilonsmartplus-text.percent-text {
        margin-top: 0;
        justify-content: start;
        text-align: left;
    }

    .epsilonsmartplus__logo-container {
        text-align: center;
    }

    .skroutz-epsilon-img .voucher__icons {
        padding-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .banking-connector__ngb-info,
    .banking-connector__ngb-info .external__container p {
        text-align: center;
        justify-content: center;
    }

    .skroutz-epsilon-img img {
        /*display: none;*/
        width: 50%;
    }

    .smart-eshop__header {
        background-position: center;
        padding: 3rem 0;
    }

    .smart-eshop__header-info {
        text-align: center;
    }

    .smart-eshop__header-info img {
        display: inline;
        width: 100%;
    }

    h3.skroutz-info-title {
        font-size: 1.5rem;
    }

    h3.skroutz-info-title:after {
        width: 80px;
    }

    .skroutz-ready__feature-title {
        font-size: 1.75rem;
    }

    .skroutz-ready__feature h3 {
        font-size: 1.5rem;
    }

    .container__skroutz-ready-icon .container {
        max-width: 100%;
    }

    .container__skroutz-ready-icon .banking-connector__ngb-info {
        padding: 0;
    }

    .epsilonsmartplus__header {
        padding-bottom: 0 !important;
        padding-top: 0.5rem;
    }
    
    .epsilonsmartplus__header .skroutz-ready__header-info {
        padding-bottom: 0.5rem;
    }
    
    .epsilonsmartplus__header .skroutz-ready__header-info .skroutz-epsilon-img {
        text-align: left;
        justify-content: center;
    }

    .epsilonsmartplus-text.percent-text {
        margin: 0;
    }

    .epsilonsmartplus__header .skroutz-epsilon-img img {
        display: flex;
        margin: 0 auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .epsilonsmartplus__header .skroutz-epsilon-img .voucher__icons img {
        padding: 0;
    }

    .epsilonsmartplus-text__plus {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .skroutz-epsilon-img .voucher__icons {
        flex-direction: row;
    }

    .epsilonsmartplus__logo-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 650px) {
    .epsilonsmartplus__header .epsilonsmartplus__logo {
        width: 250px;
    }
}

@media (max-width: 425px) {
    .epsilonsmartplus-text {
        font-size: 30px;
    }
}

/* Banking Connector Dark */

.bc-dark {
    background-image: linear-gradient(100deg, rgba(75,79,240,1) 50%, rgba(157,74,252,1) 100%);
}

.bc-dark .jumbotron-two {
    background-repeat: no-repeat;
    background-image: url(../images/banking-connector/banking-connector-container-bg.webp);
    min-height: 450px;
    background-position: center;
}

.bc-dark .banking-connector__feature .banking-connector__feature-title,
.bc-dark .banking-connector__feature h3,
.bc-dark .banking-connector__feature-title,
.bc-dark .banking-connector__feature-title h3 {
    color: #fff;
}

/* Refer Friend */

.refer-friend__header {
    background: rgb(63,94,251);
    background: linear-gradient(62deg, rgba(63,94,251,1) 50%, rgba(252,70,107,1) 100%);
    background-image: url(../images/refer-friend-banner.webp), linear-gradient(24deg, rgba(63,94,251,1) 25%, rgba(116,66,213,1) 55%, rgba(149,49,190,1) 100%);
    background-position: center;
    background-repeat: no-repeat;
    /*background-image: url(../images/refer-friend-banner.webp);*/
}

.refer-friend__header-info {
    padding-top: 2rem;
    color: #fff;
}

.immediate-service__container {
    background-color: #52b593;
    color: #fff;
}

.refer-friend_card .card-title {
    font-size: 70px;
    margin: 0;
}

.refer-friend_card-button {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
}

.refer-friend_card-button:hover {
    background-color: #fff;
    border: 2px solid #fff;
    color: #52b593;
}

.refer-friend-smart-logo {
    width: 90%;
}

.refer-friend__banner-badge {
    width: 130px;
    height: 130px;
    text-align: center;
    font-size: 14px;
    background-color: #6750A1;
    line-height: 1.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -2rem;
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .refer-friend_card {
        padding-bottom: 1rem;
    }

}

@media (max-width: 767px) {
    .refer-friend-smart-logo {
        width: 50%;
        padding-bottom: 3rem;
    }

}


/* Image modal */

.modal-image-target__size {
    display: flex;
    height: 100%;
}

.modal-image-target__feature .modal-image-target__size {
    margin-bottom: 2rem;
}

.modal-image-target__size:nth-child(odd) {
    justify-content: start;
}

.modal-image-target__size:nth-child(even) {
    justify-content: end;
}

.modal-image-target__feature .modal-image-target__size:nth-child(odd) {
    justify-content: end;
}

.modal-image-target__feature .modal-image-target__size:nth-child(even) {
    justify-content: start;
}

.modal-image-target__container {
    width: 80%;
    background-color: #0d1ddf;
}

.modal-image-target__feature .modal-image-target__container {
    width: 70%;
}

.modal-image-target__feature #nav-tabContent .row.border-after:nth-child(even) {
    flex-direction: row-reverse;
}

.modal-image-target__feature #nav-tabContent .row.border-after:nth-child(even) .modal-image-target__size {
    justify-content: right;
}

.modal-image-target__container:hover .modal-image-target {
    cursor: pointer;
    opacity: 0.65;
}

.modal-image-target__zoom {
    display: none;
    color: #fff;
    font-weight: 600;
}

.modal-image-target__zoom svg {
    fill: #fff;
    width: 50px;
    height: 50px;
}

.modal-image-target__container:hover .modal-image-target__zoom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: inherit;
    height: 100%;
    position: absolute;
    top: 0;
    cursor: pointer;
}

.image-modal .modal-dialog {
    max-width: 80%;
    /*margin: 0 auto;*/
}

.image-modal .close {
    cursor: pointer;
}

@media (max-width: 991px) {
    .modal-image-target__container:hover .modal-image-target__zoom {
        width: 95%;
    }

    .image-modal .modal-dialog {
        max-width: 100%;
    }
}

/* Image modal mobile*/

@media (max-width: 991px) {
    .modal-image-target__feature .modal-image-target__container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .image-modal .modal.show .modal-dialog {
        -webkit-transform: translate(0,50);
        transform: translate(0,50%);
    }

    .modal-image-target__feature .modal-image-target__container,
    .modal-image-target__container {
        width: 100%;
    }

    .modal-image-target__size:nth-child(odd),
    .modal-image-target__size:nth-child(even),
    .modal-image-target__feature .modal-image-target__size:nth-child(odd),
    .modal-image-target__feature .modal-image-target__size:nth-child(even) {
        justify-content: center
    }
}

/** Accordion FAQ */
.faq-section {
    background: #F8FAFF;
    border-top: 1px solid #e8ecfe;
}

.faq-row {
    flex-direction: column;
    width: 100%;
}

.accordion-faq {
    margin: 0 auto;
}

.accordion-faq #accordion {
    padding-left: 5px;
    padding-right: 5px;
}

#accordion .card:first-child { border-top: 1px solid rgba(0,0,0,.125); }

.accordion-faq .card {
    border: none;
}
.accordion-faq .card:hover {
    margin: 0;
}

.accordion-faq .card-header {
    padding: 0;
}

.accordion-faq .card-header button {
    width: 100%;
    height: 100%;
    text-transform: none;
    text-align: left;
    padding-left: 1rem;
    color: #3b49fa;
    font-weight: 600;
}

.accordion-faq .card-header button:hover {
    cursor: pointer;
    text-decoration: none;
    color: #7642ff;
}

.accordion-faq .card-header button:after {
    content: "-";
    position: absolute;
    right: 1rem;
    font-size: 15px;
}

.accordion-faq .card-header button span {
    display: inline-block;
    white-space: normal;
}

.accordion-faq .card-header button.collapsed:after {
    content: "+";
}

.accordion-faq .card-body {
    padding: 1.25rem 1.75rem 1.25rem 1.75rem;
}

@media (max-width: 549px) {
    .landing-button {
        flex-direction: column;
        text-align: center;
    }

    .homepage__buy-button {
        display: block;
        margin: 0 auto;
    }

    .homepage__buy-button-subtitle {
        width: 100%;
    }

    .landing-button .card-button__buy {
        margin-right: 1rem;
    }
}


.voucher-section { background: url(../images/voucher/voucher-banner-bg.webp) no-repeat 0 50%; background-size: cover; text-align: center; margin-bottom: 2rem; padding: 0; }

.hotel-availabilities-section { text-align: center; margin-bottom: 2rem; padding: 0; }
.hotel-availabilities-section img { width: 100%; }

.voucher-section h2,
.voucher-section p { color: #fff; }

strong.voucher { color: #00F7FF; font-weight: 600; }

.voucher-section__text { padding: 2rem 0 0 0;}

.voucher-section p { font-size: 1.6em;}
.voucher-section h2 { font-size: 1.6em; font-weight: 300; }
.voucher-section h2 strong { font-weight: 600; }

.btn-voucher { background: #00F7FF; color: #08002a; text-transform: none; font-size: 1em; border-radius: 8px; padding: 0 2em .2em 2em; }
.btn-voucher:hover { background: #88f7fb; }

.voucher-section__footer { display: flex; justify-content: center; align-items: center; gap: 3rem; margin-top: 2rem; background: linear-gradient(0deg, rgba(8,0,42,1) 0%, rgba(8,0,42,0) 100%); padding-bottom: 1rem; }
.voucher-section__footer img { height: 40px; width: auto; }

@media (max-width: 800px) {
    .voucher-section { font-size: .7rem; padding: 0; }
    .voucher-section__text { padding: 2em 0 0 0; }

    .voucher-section__footer { flex-direction: column; align-items: center; margin-top: 2rem; gap: 1rem; }
}


/*Epsilon Smart e-shop*/

:root { --card-bg: #ECECEC; --card-bg-alt: #2136ff; --linkColor: #0016fe; }

.eshop-features { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.eshop-features .card { background: var(--card-bg); padding: 1.5rem; border-radius: 15px; border: none; flex-direction: row; gap: 1.5rem; margin: 0; }
.eshop-features .card:hover { box-shadow: none; }
.eshop-features .card__text { margin: 0; }
.eshop-features .card__icon svg { width: 2rem; height: auto; fill: var(--linkColor); }
.eshop-features .card__icon img { width: 2rem; height: auto; }

.eshop-features.-important { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.eshop-features.-important .card { background: var(--card-bg-alt); }
.eshop-features.-important .card__text { color: #fff; }
.eshop-features.-important .card__icon svg { fill: #fff; }

.eshop-features.-last { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));  }
.eshop-features.-last .card { background: #fff; border: 1px solid var(--linkColor); }

.eshop-features .card.eshop-features__link {
    margin: 0;
    padding: 0;
}

.eshop-features .card.eshop-features__link a {
    display: flex;
    padding: 1.5rem;
}

.eshop-features .card.eshop-features__link:hover {
    background: #fff;
}

.eshop-features .card.eshop-features__link .card__text {
    padding-left: 1.5rem;
}

.eshop-features .card.eshop-features__link:hover .card__text {
    color: var(--card-bg-alt);
    transition: .1s all ease-in-out;
}

.eshop-features .card.eshop-features__link:hover .card__icon svg {
    fill: var(--card-bg-alt);
    transition: .1s all ease-in-out;
}

@media (max-width: 575px) {
    .eshop-features.-last {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}


/*Toast Notification */

.toast-notification { width: 500px; background: #3f51b5; position: fixed; bottom: 1rem; right: 1rem; z-index: 10000; border-radius: 10px; transition: .5s all ease-in-out; box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; display: none; justify-content: space-between; flex-direction: column; padding: 1rem; }



    .toast-notification button.close-notification { background: transparent; border: none; border-radius: 100px; width: 2.5rem; height: 2.5rem; display: flex; justify-content: center; align-items: center; line-height: 1; position: absolute; top: .5rem; right: .5rem; transition: .2s all ease-in-out; cursor: pointer; }
    .toast-notification button.close-notification:hover { background: hsl(0deg 0% 100% / 20%); }
    .toast-notification button.close-notification:focus { background: hsl(0deg 0% 100% / 50%); outline: none; }
    .toast-notification button.close-notification svg { fill: #fff; width: 1.5rem; height: 1.5rem; }


    .toast-notification.-voucher { background: url(../images/voucher/voucher-banner-bg.webp) no-repeat 0 50%; background-size: cover; border: 1px solid #fff; }

/*    .toast-notification__content { height: 75px; overflow: hidden; }*/
    /*.toast-notification .extra-content { display: none; }*/    
    .toast-notification:hover .extra-content { display: block; }

    .toast-notification__content h2 { color: #fff; font-size: 1.5rem; font-weight: 300; }
    .toast-notification__content p { color: #fff; font-size: 1rem; display: block; }

        .toast-notification__footer .btn { font-size: 1.2em; }

        .slide-in-bottom { -webkit-animation: slide-in-bottom .8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; animation: slide-in-bottom .8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; display: flex; animation-delay: 1s; }

    @media (max-width: 990px) {

        .toast-notification { bottom: 4rem; }
    }


    @media (max-width: 800px) and (orientation: portrait) {
    
        .toast-notification { width: 100%; right: 0; bottom: 0; border-radius: 0; box-shadow: rgb(0 0 0 / 10%) 0px -5px 15px -3px; }
    }


/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
    0% { -webkit-transform: translateY(1000px); transform: translateY(1000px); opacity: 0; }
    100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

@keyframes slide-in-bottom {
    0% { -webkit-transform: translateY(1000px); transform: translateY(1000px); opacity: 0; }
    100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}


/** Tameiaki badge */

.subsidy-badge__container,
.subsidy-badge__container-home {
    width: 250px;
    height: 220px;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -2rem;
    color: #fff;
    font-weight: 600;
    background-color: #F93B01;
    color: #fff;
    border: 4px double #fff;
    z-index: 99;
    position: absolute;
    right: 35%;
    border-radius: 52% 48% 38% 62% / 41% 34% 66% 59%;
}

.subsidy-badge__container-home {
    width: 110px;
    height: 90px;
    font-size: 17px;
    top: -24px;
    right: 75px;
}

@media (max-width: 767px) {
    .tameiaki-text__container {
        flex-direction: column-reverse;
    }

    .subsidy-badge__container {
        right: 0;
        width: 125px;
        height: 110px;
        font-size: 20px;
    }
}

@media (max-width: 485px) {
    .tameiaki-text__container .text-muted {
        background: #fff;
        z-index: 99;
        position: relative;
    }

    .subsidy-badge__container {
        top: -55px;
        z-index: 0;
    }
}

/** Smart Hygeia page */

.smart-hygeia-info-title {
    text-align: left;
}

.smart-hygeia-content .list-header {
    display: flex;
    justify-content: start;
    font-size: 20px !important;
    padding: 0.5rem 1rem;
    align-items: center;
    color: #008b90;
}

.smart-hygeia-content .icon-number {
    font-size: 2rem;
    padding-right: 1rem;
    color: #03a535;
    color: #008b90;
}

.smart-hygeia-landing__container {
    background-repeat: no-repeat;
    background-image: url(../images/smart-hygeia-banner-1140-350-landingpage.webp);
    min-height: 350px;
    background-position: center;
    background-color: #4c50e9;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    color: #fff;
    position: relative;
    background-size: cover;
    padding: 0 1rem;
}

.smart-hygeia-landing__container .smart-hygeia__discount-button {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.smart-hygeia-landing__container .smart-hygeia__discount-button:hover {
    border: 2px solid #ffffff;
    color: #008b90;
    background-color: #ffffff;
}

.smart-hygeia-landing__container span {
    font-size: 28px;
}

.smart-hygeia-landing__container img {
    width: 200px;
    position: absolute;
    right: 5%;
    bottom: 5%;
}

.smart-hygeia-link {
    text-decoration: underline;
    color: #57c464;
    text-underline-offset: 3px;
}

.smart-hygeia-link:hover {
    color: #57c464;
}

.smart-hygeia-link span {
    font-size: 23px;
    font-weight: 600;
}

.smart-hygeia-link__hygeia {
    color: #3e396b;
}

.smart-hygeia-link__hygeia:hover {
    color: #57c464;
}

@media (max-width: 991px) {
    .smart-hygeia-landing__container {
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }

    .smart-hygeia-landing__container a {
        margin: 1rem 0;
    }
    
    .smart-hygeia-landing__container img {
        position: unset;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 475px) {
    .smart-hygeia-landing__container img {
        padding-bottom: 1rem;
    }
}

/** Subscription Agreement */

.terms-of-use__container {
    margin: 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    padding: 25px;
    color: #575962;
    font-size: 15px;
}

.h-terms-of-use-header {
    text-align: center;
    padding-bottom: 1rem;
}

#v-pills-tabContent .tab-pane h5 {
    padding-bottom: 0.5rem;
    text-align: left;
    color: #007bff;
}

.nav-pills .nav-link {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
}

.nav-pills .nav-link.active:hover {
    background-color: #007bff;
}

.nav-pills .nav-link:hover {
    background-color: #eee;
}

.subscription-update__intro-text {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    font-size: 17px;
    padding: 0.5rem;
    margin: 1rem;
}