/***

- COLORS -
gray: #4f4f4f | rgba(79,79,79,1);
gold: #d9a239 | rgba(217,162,57,1);
green: #4bb75a | rgba(75,183,90,1);
red: #b84c4c | rgba(30,32,34,1);
blue: #52a5bb | rgba(30,32,34,1);

IMAGE LINKS from general database!!!
background-image: url('/ui/system/icons/gray/customer.svg');

***/

@font-face {
  font-family: SourceSansPro-ExtraLight; /* deklarace fontu */
  src: url(/css/fonts/SourceSansPro-ExtraLight.ttf); /* propojenĂ­ na umĂ­stÄ›nĂ­ souboru */
}
@font-face {
  font-family: SourceSansPro-Regular; /* deklarace fontu */
  src: url(/css/fonts/SourceSansPro-Regular.ttf); /* propojenĂ­ na umĂ­stÄ›nĂ­ souboru */
}
@font-face {
  font-family: SourceSansPro-Bold; /* deklarace fontu */
  src: url(/css/fonts/SourceSansPro-Bold.ttf); /* propojenĂ­ na umĂ­stÄ›nĂ­ souboru */
}
* {
  font-family: SourceSansPro-ExtraLight;
  margin: 0;
  padding: 0;
  font-size: 1em;
  color: #232323;
}
h1,
h2,
h3,
h4 {
  font-weight: 100;
  margin: 0.3em 0;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.7em;
}
h4 {
  font-size: 1.5em;
}
hr {
  width: 100%;
  height: 1px;
  margin: 25px 0;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1.5px dotted #eaeaea;
}

body {
  padding: 0;
  margin: 0;
}

/*** Systém ***/
a {
  color: #4f4f4f;
  transition: all 0.5s;
  text-decoration: none;
}
a:hover {
  transition: all 0.5s;
}
input[type='text'],
input[type='password'],
input[type='number'],
input[type='email'],
select,
input[type='tel'],
input[type='date'],
input[type='time'] {
  width: 300px;
  padding: 15px 50px 15px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center right 5px;
  background-repeat: no-repeat;
  background-size: auto 40%;
  font-size: 1.3em;
  border: none;
  transition: all 1s;
  color: #232323;
}
input[type='text']:focus,
input[type='submit']:focus,
input[type='button']:focus,
input[type='password']:focus,
input[type='number']:focus,
input[type='email']:focus,
select:focus,
input[type='tel']:focus,
input[type='date']:focus,
input[type='time']:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.35);
  transition: all 0.5s ease-in;
  color: #232323;
}
input[type='text']::-webkit-input-placeholder {
  color: #424242;
}
input[type='text']::-moz-placeholder {
  color: #424242;
}
input[type='text']:-ms-input-placeholder {
  color: #424242;
}
input[type='text']:-moz-placeholder {
  color: #424242;
}
input[type='text']::placeholder {
  color: #424242;
}
input[type='number']::-webkit-input-placeholder {
  color: #424242;
}
input[type='number']::-moz-placeholder {
  color: #424242;
}
input[type='number']:-ms-input-placeholder {
  color: #424242;
}
input[type='number']:-moz-placeholder {
  color: #424242;
}
input[type='password']::-webkit-input-placeholder {
  color: #424242;
}
input[type='password']::-moz-placeholder {
  color: #424242;
}
input[type='password']:-ms-input-placeholder {
  color: #424242;
}
input[type='password']:-moz-placeholder {
  color: #424242;
}
input[type='email']::-webkit-input-placeholder {
  color: #424242;
}
input[type='email']::-moz-placeholder {
  color: #424242;
}
input[type='email']:-ms-input-placeholder {
  color: #424242;
}
input[type='email']:-moz-placeholder {
  color: #424242;
}
input[type='tel']::-webkit-input-placeholder {
  color: #424242;
}
input[type='tel']::-moz-placeholder {
  color: #424242;
}
input[type='tel']:-ms-input-placeholder {
  color: #424242;
}
input[type='tel']:-moz-placeholder {
  color: #424242;
}
input[type='password']::placeholder {
  color: #424242;
}
input[type='number']::placeholder {
  color: #424242;
}
input[type='email']::placeholder {
  color: #424242;
}
input[type='tel']::placeholder {
  color: #424242;
}
input[type='date']::placeholder {
  color: #424242;
}
input[type='time']::placeholder {
  color: #424242;
}
textarea::-webkit-input-placeholder {
  color: #424242;
}
textarea::-moz-placeholder {
  color: #424242;
}
textarea:-ms-input-placeholder {
  color: #424242;
}
textarea:-moz-placeholder {
  color: #424242;
}
textarea::placeholder {
  color: #424242;
}
input[type='submit'] {
  padding: 15px 50px;
  border-radius: 360px;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
textarea {
  border: none;
  width: 70%;
  min-height: 100px;
  font-size: 1.3em;
  transition: all 0.5s;
  padding: 15px 50px 15px 15px;
  background-size: 0%;
  margin: 5px;
  -webkit-outline: none;
  -moz-outline: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
textarea:focus {
  -webkit-outline: none;
  -moz-outline: none;
  outline: none;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.35);
}
.input-form {
  float: left;
  width: 50%;
}
.input-form label {
  margin: 0 0 0 0.5%;
  text-align: left;
  font-family: SourceSansPro-Regular;
}
.font-regular {
  font-family: SourceSansPro-Regular;
}
.font-bold {
  font-family: SourceSansPro-Bold;
}
.center {
  text-align: center;
}
.justify {
  text-align: justify;
}
.left-text {
  text-align: left;
}
.right-text {
  text-align: right;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.gray_text {
  color: #4f4f4f;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m5p {
  margin: 10px 5%;
}
.clear {
  clear: both;
}

/************************************ HOMEPAGE ******************************************/
.cleaner {
  clear: both;
}

/**************************** IMAGES ******************************/
.pencil-white {
  background-image: url('/ui/system/icons/white/pencil.svg');
}
.recommended-company {
  background-image: url('/ui/system/icons/orange/recommend_company.svg');
}
.fire-white {
  background-image: url('/ui/system/icons/white/fire.svg');
}
.customer-icon {
  background-image: url('/ui/system/icons/white/customer.svg');
}
.house-gray {
  background-image: url('/ui/system/icons/gray/house.svg');
}
.star-white {
  background-image: url('/ui/system/icons/white/star.svg');
}
.repeat-white {
  background-image: url('/ui/system/icons/white/repeat.svg');
}
.post-white {
  background-image: url('/ui/system/icons/white/email.svg');
}
.email {
  background-image: url('/ui/system/icons/gray/email.svg');
}
.telephone {
  background-image: url('/ui/system/icons/gray/mobile.svg');
}
.food-all-gray {
  background-image: url('/ui/system/icons/gray/food_all.svg');
}
.fire-gray {
  background-image: url('/ui/system/icons/gray/fire.svg');
}
.orders-icon {
  background-image: url('/ui/system/icons/white/orders.svg');
}

.cash-register,
.cash-register:hover,
.application,
.application:hover,
.telephone-system,
.telephone-system:hover,
.eshop,
.eshop:hover,
.gps-driver,
.gps-driver:hover,
.smart-stock,
.smart-stock:hover,
.kiosk,
.kiosk:hover,
.QR-orders,
.QR-orders:hover,
.tables-system,
.tables-system:hover,
.mobile-staff,
.mobile-staff:hover {
  transition: all 0.7s;
}
.QR-orders {
  background-image: url('https://objedname.eu/page/img/icons/QR_orders.png');
}
.QR-orders:hover {
  background-image: url('https://objedname.eu/page/img/icons/QR_orders_hover.png');
}
.kiosk {
  background-image: url('https://objedname.eu/page/img/icons/kiosk.png');
}
.kiosk:hover {
  background-image: url('https://objedname.eu/page/img/icons/kiosk_hover.png');
}
.manageability {
  background-image: url('https://objedname.eu/page/img/icons/manageability.png');
}
.responsivity {
  background-image: url('https://objedname.eu/page/img/icons/responsibility.png');
}
.multifunction {
  background-image: url('https://objedname.eu/page/img/icons/customization.png');
}
.customization {
  background-image: url('https://objedname.eu/page/img/icons/editable.png');
}
.customers {
  background-image: url('https://objedname.eu/page/img/icons/user.png');
}
.friend-mobile, .application {
  background-image: url('https://objedname.eu/page/img/banner/friend_mobile.png');
}
.friend-tel-sys, .telephone-system {
  background-image: url('https://objedname.eu/page/img/banner/friend_tel_system.png');
}
.friend-eet, .cash-register {
  background-image: url('https://objedname.eu/page/img/banner/friend_eet.png');
}
.friend-eshop, .eshop {
  background-image: url('https://objedname.eu/page/img/banner/friend_eshop.png');
}
.friend-gps, .gps-driver {
  background-image: url('https://objedname.eu/page/img/banner/gps_mobile_1.png');
}
.friend-stock, .smart-stock {
  background-image: url('https://objedname.eu/page/img/banner/friend_stock.png');
}
.friend-tables, .tables-system {
  background-image: url('https://objedname.eu/page/img/banner/friend_tables.png');
}
.friend-waiter, .mobile-staff {
  background-image: url('https://objedname.eu/page/img/banner/friend_waiter.png');
}
.see-eye {
  background-image: url('https://objedname.eu/page/img/icons/see.png');
}
.android {
  background-image: url('https://objedname.eu/page/img/icons/android.png');
}
.apple {
  background-image: url('https://objedname.eu/page/img/icons/apple.png');
}

/**************************** SYSTEM ******************************/
.wrapper {
  width: 100%;
}
.gradient-btn {
  background-image: -webkit-linear-gradient(top, #f56e68, #dba43b);
  background-image: -moz-linear-gradient(top, #f56e68, #dba43b);
  background-image: -ms-linear-gradient(top, #f56e68, #dba43b);
  background-image: -o-linear-gradient(top, #f56e68, #dba43b);
  background-image: linear-gradient(to top right, #dba43b, #f56e68);
}
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 360px;
  margin: 15px 0;
  color: #ffffff;
  transition: all 0.3s;
}
.btn:hover {
	transform: scale(1.1);
    transition: all 0.3s;
}

/**************************** HEADER ******************************/
.website-header {
  width: 100%;
  height: 50px;
  background-color: #232323;
  background-image: url('../img/icons/logosymbol_white.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 60%;
}
.website-header-mini {
  width: 100%;
  height: 50px;
  background-color: #232323;
  background-image: url('../img/icons/logosymbol_white.png');
  background-repeat: no-repeat;
  background-position: center left 10%;
  background-size: auto 60%;
}
.header-menu {
  padding: 0 10% 0 15%;
  text-align: right;
  -webkit-overflow-scrolling: touch;
}
.header-menu li {
  display: inline-block;
  text-decoration: none;
}
.header-link {
  z-index: 0;
  display: inline-block;
  color: #ffffff;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1em;
  position: relative;
  cursor: pointer;
  background-position: center left 5px;
  background-repeat: no-repeat;
  background-size: auto 20px;
  transition: all 0.5s;
}
.header-link,
.header-link:after {
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -transition: all 0.8s ease;
}
.header-link:hover {
  color: #ffffff;
}
.header-link:after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 100%;
  border-bottom: 3px solid #ffffff;
}
.header-link:hover:after {
  border-bottom: 3px solid #ffffff;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}

/**************************** MENU ******************************/
.website-menu {
  width: 60%;
  margin: 60px 20%;
  text-align: center;
}
.text-orange {
  color: #d9a239;
}
.text-white {
  color: #fff;
}
.website-menu-services {
  text-align: center;
  margin: 60px 0;
}
.website-menu-services li {
  display: inline-block;
}
.website-menu-services li a {
  display: inline-block;
  padding: 125px 0 0 0;
  background-position: center bottom 20px;
  background-repeat: no-repeat;
  background-size: auto 100px;
  cursor: pointer;
  margin: auto 20px;
  text-decoration: none;
  color: #232323;
  min-width: 125px;
  position: relative;
  transition: all 0.5s;
}
.website-menu-services li a:hover {
	transform: scale(1.1);
	transition: all 0.5s;
}
.out-of-service {
}
.out-of-service::before {
  content: 'více info po tel.';
  position: absolute;
  width: 100px;
  height: 26px;
  margin: -60px 0 0 0;
  line-height: 26px;
  font-size: 0.9em;
  color: #ffffff;
  background-color: #b82628;
  left: 0;
  border-radius: 360px;
}

.gradient-text {
  background: linear-gradient(45deg, #dba43b, #f56e68);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/**************************** BANNERS ******************************/
.banner-100 {
  width: 100%;
  display: block;
  margin: 10px 0;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.banner-100 a {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: auto 100%;
  display: block;
  position: relative;
}
.banner-50-l {
  margin: 10px 0.5% 10px 0;
}
.banner-50-r {
  margin: 10px 0 10px 0.5%;
}
.banner-50-l,
.banner-50-r {
  width: 49.5%;
  float: left;
  display: block;
}
.banner-50-l a,
.banner-50-r a {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: auto 100%;
  display: block;
  position: relative;
}
.banner-hover {
  opacity: 0;
  transition: all 0.7s;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.banner-100 a:hover {
  opacity: 1;
  transition: all 0.4s;
  background-size: auto 105%;
}
.banner-100 a:hover .banner-hover {
  opacity: 1;
  transition: all 0.7s;
}
.banner-hover-column {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.banner-hover-column label {
  font-size: 1.2em;
}
.banner-50-l a:hover {
  opacity: 1;
  transition: all 0.4s;
  background-size: auto 105%;
}
.banner-50-l a:hover .banner-hover {
  opacity: 1;
  transition: all 0.7s;
}
.banner-50-r a:hover {
  opacity: 1;
  transition: all 0.4s;
  background-size: auto 105%;
}
.banner-50-r a:hover .banner-hover {
  opacity: 1;
  transition: all 0.7s;
}

/**************************** BLOG-BOX ******************************/
.blog-box {
  width: 100%;
  margin: 10px 0;
  height: 500px;
  background-position: center;
  background-size: auto 100%;
  display: block;
  position: relative;
  text-align: center;
  transition: all 0.5s;
}
.blog-box:hover {
  transition: all 0.5s;
  background-size: auto 105%;
}
.blog-box-column {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/**************************** FOOTER ******************************/
.footer-column {
  padding: 20px 20%;
}
.footer-33 {
  width: 33%;
  margin: 20px 0;
  float: left;
}
.footer-33 h4 {
  color: #ffffff;
  font-size: 1.2em;
  font-family: SourceSansPro-Regular;
}
.footer-33 a {
  display: block;
  float: left;
  width: 50%;
  color: #ffffff;
}
.footer-33 a:hover {
  color: #e4e4e4;
}
.footer-bottom {
  border-top: 1px solid #ffffff;
  margin: 0 20%;
}
.footer-bottom-center {
  width: 60%;
  height: 50px;
  line-height: 50px;
  display: block;
  float: left;
  color: #ffffff;
  overflow: hidden;
}
.footer-bottom-left,
.footer-bottom-right {
  width: 20%;
  height: 50px;
  line-height: 50px;
  display: block;
  float: left;
  color: #ffffff;
}
.footer-bottom-left {
  text-align: left;
  background-image: url(../img/icons/logo_white.svg);
  background-position: center left;
  background-size: auto 30px;
  background-repeat: no-repeat;
}
.footer-bottom-center {
  text-align: center;
}
.footer-bottom-right {
  text-align: right;
}
.footer-partners-box {
  text-align: center;
  padding: 25px 0 50px 5%;
  width: 90%;
}
.footer-partners-box h4 {
  color: #ffffff;
  font-size: 1.2em;
  font-family: SourceSansPro-Regular;
  margin: 0 0 25px 0;
}
.footer-partner {
  width: 100px;
  height: 48px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 15px;
  opacity: 0.8;
}
.abx-logo {
  width: 64px;
  height: 64px;
  background-image: url('../img/partners/abx_logo.png');
}
.comgate-logo {
  background-image: url('../img/partners/comgate_logo.png');
}
.gpwbpay-logo {
  background-image: url('../img/partners/gpwebpay_logo.png');
}
.payu-logo {
  background-image: url('../img/partners/payu_logo.png');
}
.gopay-logo {
  background-image: url('../img/partners/Gopay_logo.png');
}
.borgun-logo {
  background-image: url('../img/partners/borgun_payment.png');
}
.twisto-logo {
  background-image: url('../img/partners/twisto_logo.png');
}
.mk-logo {
  background-image: url('../img/partners/logo_mk.png');
}
.premiumgastro-logo {
  background-image: url('../img/partners/partners_list/premium-gastro/logo-white.png');
}
/**************************** EET SYSTEM ******************************/
.eet-header-box {
  text-align: center;
  padding: 60px 0;
}
.eet-header-banner {
  background-image: url('../img/banner/banner_eet.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 500px;
  display: block;
  margin: 50px 0;
}
.eet-banner-1 {
  width: 100%;
  height: 400px;
  display: block;
  overflow: hidden;
}
.eet-banner-1-img {
  width: 60%;
  height: 400px;
  position: relative;
  display: block;
  float: right;
  background-image: url('../img/banner/eet_detail_1.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 75%;
}
.eet-banner-1-desc {
  padding: 50px 0 0 10%;
  width: 30%;
  display: block;
  float: left;
  height: 300px;
}
.eet-banner-1-desc h1 {
  color: #ffffff;
}
.eet-banner-1-desc p {
  color: #ffffff;
  margin: 10px 0;
}
.eet-banner-2 {
  margin: 60px 0 0 0;
  text-align: center;
}
.eet-banner-2-box {
  margin: 50px 20%;
}
.eet-banner-column {
  float: left;
  width: 31%;
  margin: 20px 1%;
  padding: 42px 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 36px;
}
.eet-banner-column p {
  text-align: justify;
}
.eet-banner-column h4 {
  color: #d9a239;
}
.eet-banner-3 {
  text-align: center;
}
.eet-banner-3-img {
  margin: 50px 0 0 0;
  width: 100%;
  height: 1058px;
  background-image: url('../img/banner/eet_detail_2.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.eet-banner-4 {
  text-align: center;
  margin: 150px 20%;
}
.eet-banner-5 {
}
.eet-banner-5-img {
  margin: 50px 0 0 0;
  width: 100%;
  height: 555px;
  background-image: url('../img/banner/eet_detail_3.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.eet-banner-6 {
  text-align: center;
  margin: 60px 10% 0 10%;
  width: 80%;
  display: block;
}
/* POKUD NEBYLA POTREBA DO POSUD, TAK SMAZAT
.bottom-friends-box {
	width: 100%;
	display: block;
	display: flex;
	align-content: flex-start;
	flex-wrap: wrap;
	align-items: stretch;
}
.bottom-friends-box a {
	display: inline-block;
    flex-basis: 200px;
    flex-grow: 1;
    text-align: center;
    margin: 5px;
    padding: 5px;
    color: #FFFFFF;
}
.friend-column {
  height: 200px;
  overflow: hidden;
  background-position: center top 75px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.7s;
}
.friend-column:hover {
  background-position: center top 55px;
  transition: all 0.7s;
}
*/

/**************************** APPLICATION ******************************/
.application-banner-1 {
  text-align: center;
  background-image: url('../img/banner/banner_colors.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  padding: 60px 0 900px 0;
}
.application-banner-1 h1,
.application-banner-1 h1 span {
  color: #ffffff;
}

.application-banner-2 {
  text-align: center;
  width: 60%;
  margin: 60px 20% 100px 20%;
}
.application-banner-2 h1 {
  margin: 0 0 20px 0;
}

.application-banner-3 {
  width: 70%;
  height: 800px;
  padding: 0 15%;
  position: relative;
  text-align: center;
  display: block;
}
.app-banner-3-column {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.application-banner-3 h1 {
  margin: 0 0 25px 0;
  color: #ffffff;
}
.app-banner-3-col30 {
  float: left;
  width: 30%;
}
.app-banner-3-col40 {
  float: left;
  width: 40%;
}
.app-banner-3-img {
  width: 100%;
  height: 600px;
  background-image: url('../img/banner/application_front.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 80%;
}
.app-banner-3-desc {
  padding: 40px 0 0 0;
  margin: 0 0 10px 0;
  min-height: 150px;
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 32px;
}
.app-banner-3-desc h4 {
}
.app-banner-3-desc p {
  color: #ffffff;
  text-align: justify;
}

.application-banner-4 {
  margin: 60px 0;
  text-align: center;
}
.application-banner-4 h1 {
  padding: 100px 0 0 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 64px;
}
.app-banner-4-content {
  display: block;
  text-align: center;
  margin: 60px 0 0 0;
}
.app-banner-4-desc {
  margin: 60px 20%;
}
.app-banner-4-phone-1,
.app-banner-4-phone-2,
.app-banner-4-phone-3 {
  display: inline-block;
  width: 250px;
  height: 550px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  position: relative;
}
.app-banner-4-phone-1 {
  background-image: url('../img/banner/application_front_orange.png');
  z-index: 10;
}
.app-banner-4-phone-2 {
  background-image: url('../img/banner/application_front_black.png');
  z-index: 7;
  margin: 0 0 0 -100px;
}
.app-banner-4-phone-3 {
  background-image: url('../img/banner/application_front_red.png');
  z-index: 3;
  margin: 0 0 0 -100px;
}

.application-banner-5 {
  width: 100%;
  padding: 200px 0 360px 0;
  height: 700px;
}
.app-banner-5-absolute {
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 700px;
}
.app-banner-5-prev {
  width: 25%;
  height: 700px;
  float: left;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  text-align: center;
}
.app-banner-5-prev-btn,
.app-banner-5-next-btn {
  display: inline-block;
  width: 36px;
  height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px;
  cursor: pointer;
}
.app-banner-5-prev-btn {
  background-image: url('/ui/system/icons/gray/arrow_left.svg');
}
.app-banner-5-mobframe {
  float: left;
  width: 50%;
  height: 700px;
  background-image: url('../img/system/graphic/frame_phone.png');
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: auto 100%;
}
.app-banner-5-next {
  width: 25%;
  height: 700px;
  float: left;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.02) 1%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 1) 99%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.02) 1%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 1) 99%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.02) 1%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 1) 99%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
  text-align: center;
}
.app-banner-5-next-btn {
  background-image: url('/ui/system/icons/gray/arrow_right.svg');
}
.app-banner-5-slides-box {
  text-align: center;
}
.app-banner-5-slide-left h2,
.app-banner-5-slide-right h2,
.app-banner-5-slide-left p,
.app-banner-5-slide-right p {
  display: none;
}
.app-banner-5-slide-left {
  width: 25%;
  height: 700px;
  float: left;
}
.app-banner-5-slide-center h2 {
  display: block;
  width: 100%;
  height: 70px;
  margin: -70px 0 0 0;
}
.app-banner-5-slide-center p {
  display: block;
  width: 100%;
  height: 300px;
  margin: 0 0 -350px 0;
  padding: 50px 0 0 0;
  text-align: justify;
}
.app-banner-5-slide-center {
  width: 50%;
  height: 700px;
  float: left;
}
.app-banner-5-slide-right {
  width: 25%;
  height: 700px;
  float: left;
}
.app-banner-5-slide-screen {
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 92%;
}
.app-banner-5-slide-none {
  display: none;
}

.application-banner-6 {
}
.app-banner-6-img {
  background-image: url('../img/banner/appliaction_left_bottom.png');
  background-repeat: no-repeat;
  background-position: top right -300px;
  background-size: auto 100%;
  width: 50%;
  height: 500px;
  float: right;
  margin: -150px 0 0 0;
  display: block;
}
.app-banner-6-content {
  width: 40%;
  padding: 150px 0 60px 10%;
  float: left;
}
.app-banner-6-content h2 {
  color: #ffffff;
}
.app-banner-6-content h4 {
  color: #ffffff;
}
.app-banner-6-devices {
  padding: 50px 0;
}
.app-banner-6-dev-col {
  float: left;
  padding: 40px 20px 0 20px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 36px;
  text-align: center;
}
.app-banner-6-dev-col span {
  color: #ffffff;
  height: 50px;
  line-height: 50px;
  padding: 0 0 0 34px;
  background-image: url('/ui/system/icons/white/magnify.svg');
  background-repeat: no-repeat;
  background-position: center left 5px;
  background-size: auto 90%;
  font-size: 1.2em;
}

.application-banner-7 {
  text-align: center;
  padding: 60px 0 100px 0;
  width: 100%;
  height: 550px;
  background-image: url('../img/banner/mobile_bottom.png');
  background-repeat: no-repeat;
  background-position: center top 200px;
  background-size: 60%;
}

.application-banner-8 {
  width: 100%;
  padding: 200px 0;
  background-image: url('../img/banner/banner_food_mobile.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
.application-banner-8 h1,
.application-banner-8 h4 {
  color: #ffffff;
  margin: 20px 0;
}

/**************************** ESHOP ******************************/
.eshop-header-box {
  text-align: center;
  padding: 60px 0;
}
.eshop-header-box h4 {
  padding: 0 20%;
}
.eshop-header-banner {
  background-image: url('../img/banner/monitor_website.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 500px;
  display: block;
  margin: 50px 0;
}

.eshop-banner-1 {
  padding: 100px 5% 300px 5%;
  text-align: center;
  background-image: url('../img/banner/website_flat.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
span.eshop1 {
  font-size: 1.3em;
  font-weight: 600;
}
span.eshop2 {
  font-size: 1.6em;
  font-weight: 600;
}
span.eshop3 {
  font-size: 2em;
  font-weight: 600;
}

.eshop-banner-2 {
  padding: 450px 65% 250px 5%;
  background-image: url('../img/banner/website_pc_1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.eshop-banner-3 {
  padding: 250px 20%;
  text-align: center;
}
.eshop-banner-3 h1 {
  padding: 0 0 30px 0;
}
.eshop-banner-3 h4 {
}
.eshop-banner-3-img {
  width: 100%;
  height: 700px;
  background-image: url('../img/banner/website_seo.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.eshop-banner-4 {
  padding: 60px 0;
  text-align: center;
}
.eshop-banner-4-img {
  width: 100%;
  height: 400px;
  margin: 60px 0 0 0;
  background-image: url('../img/banner/monitor_website.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.eshop-banner-4 h1,
.eshop-banner-4 h4 {
  color: #ffffff;
}

.eshop-banner-5 {
  background-image: url('../img/banner/monitor_website.png');
  background-position: center right -300px;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding: 250px 60% 250px 5%;
}
.eshop-banner-5 h1 {
  padding: 70px 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 64px;
  margin: 0 0 30px 0;
  text-align: center;
}
.eshop-banner-5 h4 {
  text-align: justify;
}

/**************************** Telephone System ******************************/
.telephoneSystem-header-box {
  text-align: center;
  padding: 60px 0;
}
.telephoneSystem-header-banner {
  background-image: url('../img/banner/website_tel_sys.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 550px;
  display: block;
  margin: 50px 0;
}
.telephoneSys-banner-1 {
  background-image: url('../img/banner/tel_sys_gradient.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 150px 10%;
}
.telephoneSys-banner-1 h1,
.telephoneSys-banner-1 h4,
.telephoneSys-banner-1 span {
  color: #ffffff;
}
.telephoneSys-banner-1 h1 {
  margin: 0 0 30px 0;
}
.telephoneSys-banner-1 h4 {
  margin: 0 0 30px 0;
}
.telephoneSys-banner-1 span {
  font-size: 4em;
}
.telephoneSys-banner-2 {
  padding: 60px 10%;
  text-align: center;
}
.telephoneSys-2-img {
  width: 100%;
  height: 500px;
  margin: 60px 0;
  background-image: url('../img/banner/eet_greenscreen.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.telephoneSys-banner-3 {
  margin: 60px 0;
  padding: 350px 10% 350px 50%;
  background-image: url('../img/banner/headphones.png');
  background-position: center left -300px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.telephoneSys-banner-3 h1 {
  margin: 0 0 30px 0;
}

/**************************** Contact ******************************/
.contact-header-box {
  text-align: center;
  padding: 60px 0;
}
.contact-header-box h1 {
}
.contact-header-banner {
  background-image: url('../img/banner/banner_contact.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 600px;
  display: block;
  margin: 50px 0;
}
.banner-contact-1 {
  width: 60%;
  padding: 0 20%;
  text-align: center;
}
.banner-con-option {
  display: block;
  width: 45%;
  float: left;
  padding: 60px 0 60px 5%;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: auto 35%;
}
.banner-con-option h1 {
  color: #d9a239;
}
.telephone-icon {
  background-image: url('/ui/system/icons/orange/mobile.svg');
}
.email-icon {
  background-image: url('/ui/system/icons/orange/email.svg');
}
.telephone-gray-icon {
  background-image: url('/ui/system/icons/gray/mobile.svg');
}
.banner-contact-2 {
  margin: 60px 0 0 0;
  width: 100%;
  height: 600px;
  background-image: url('../img/banner/contact_bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.banner-con-column {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.banner-con-column h1 {
  padding: 0 0 30px 0;
}

/**************************** ANIMATIONS ******************************/

/********** MARG-TOP *********/
#banner1,
#banner2,
#banner4,
#banner5,
#banner-eet3,
#banner-eet4,
#banner-eet5,
#banner-eet6,
#banner-eet7,
#banner-eet8,
#banner-eet10,
#banner-app1,
#banner-app2,
#banner-app3,
#banner-app4,
#banner-app5,
#banner-app6,
#banner-app7,
#banner-app8,
#banner-app9,
#banner-app17,
#banner-app18,
#eshop1,
.eshop1,
.eshop2,
.eshop3,
#eshop4,
#eshop5,
#eshop6,
#eshop7,
#eshop8,
#eshop9,
#telephone1,
#telephone2,
#telephone3,
#telephone4,
#telephone6,
#telephone7,
#telephone9 {
  opacity: 0;
  margin-top: -50px;
  transition: all 1s;
}
/********** MARG-LEFT *********/
#banner3,
#banner-eet1,
#banner-eet9,
#banner-eet11,
#banner-app13,
#banner-app16,
#eshop2,
#eshop3,
#eshop11,
#eshop12,
#telephone5,
#telephone8 {
  opacity: 0;
  margin-left: -100px;
  transition: all 1s;
}
/********** MARG-BOTTOM *********/
#banner-eet2,
#banner-app15 {
  opacity: 0;
  margin-top: 100px;
  transition: all 1s;
}
#banner1.animate,
#banner4.animate,
#banner-app1.animate,
#banner-app3.animate,
#banner-app9.animate,
#banner-app15.animate,
#banner-app17.animate,
#eshop1.animate,
.eshop1.animate,
#eshop4.animate,
#eshop6.animate,
#eshop8.animate,
#telephone1.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s;
}
#banner-eet10.animate {
  opacity: 1;
  margin-top: 150px;
  transition: all 1s;
}
#banner2.animate,
#banner5.animate,
#banner-eet2.animate,
#banner-app2.animate,
#eshop5.animate,
#eshop7.animate,
#eshop9.animate,
#telephone2.animate,
#telephone6.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 0.5s;
}
#banner3.animate,
#banner-eet1.animate,
#banner-eet9.animate,
#banner-eet11.animate,
#banner-app13.animate,
#eshop2.animate,
#eshop3.animate,
#eshop11.animate,
#telephone5.animate,
#telephone8.animate {
  opacity: 1;
  margin-left: 0;
  transition: all 1s;
}
#banner-app16.animate,
#eshop12.animate {
  opacity: 1;
  margin-left: 0;
  transition: all 1s ease-out 1s;
}
#banner-eet3.animate,
#banner-app4.animate,
#banner-app18.animate,
.eshop2.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 0.5s;
}
#banner-eet4.animate,
#banner-app5.animate,
.eshop3.animate,
#telephone3.animate,
#telephone7.animate,
#telephone9.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 1s;
}
#banner-eet5.animate,
#banner-app6.animate,
#telephone4.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 1.5s;
}
#banner-eet6.animate,
#banner-app7.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 2s;
}
#banner-eet7.animate,
#banner-app8.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 2.5s;
}
#banner-eet8.animate {
  opacity: 1;
  margin-top: 0;
  transition: all 1s ease-out 3s;
}

#banner-app10 {
  opacity: 0;
  margin-left: -100px;
  transition: all 1s;
}
#banner-app10.animate {
  opacity: 1;
  margin-left: 0px;
  transition: all 1s;
}
#banner-app11,
#banner-app12 {
  opacity: 0;
  margin-left: -200px;
  transition: all 1s;
}
#banner-app11.animate {
  opacity: 1;
  margin-left: -100px;
  transition: all 1s ease-out 1s;
}
#banner-app12.animate {
  opacity: 1;
  margin-left: -100px;
  transition: all 1s ease-out 2s;
}
#banner-app14 {
  margin: 0 0 0 0;
  opacity: 0;
  transition: all 1s;
}
#banner-app14.animate {
  margin: -50px 0 0 0;
  opacity: 1;
  transition: all 1s ease-out 1s;
}

/***************************** SLIDER ********************************/

/**************************** END-HOMEPAGE ******************************/

/***Icons-black***/

.black_magnifier {
  background-image: url(../img/system/icons/black/magnifier.png);
}

.black_heart {
  background-image: url(../img/system/icons/black/heart.png);
}
.black_eye {
  background-image: url(../img/system/icons/black/eye.png);
}

.black_hot {
  background-image: url(../img/system/icons/black/fire.png);
}

.black_cart {
  background-image: url(../img/system/icons/black/cart.png);
}

.black_tripple {
  background-image: url(../img/system/icons/black/tripple.png);
}

/***Icons-white***/

.white_magnifier {
  background-image: url(../img/system/icons/white/magnifier.png);
}

.white_heart {
  background-image: url(../img/system/icons/white/heart.png);
}

.white_eye {
  background-image: url(../img/system/icons/white/eye.png);
}

.white_hot {
  background-image: url(../img/system/icons/white/fire.png);
}

.white_cart {
  background-image: url(../img/system/icons/white/cart.png);
}

.white_tripple {
  background-image: url(../img/system/icons/white/tripple.png);
}

.white_facebook {
  background-image: url(../img/system/icons/white/facebook.png);
}

.white_twitter {
  background-image: url(../img/system/icons/white/twitter.png);
}

.white_instagram {
  background-image: url(../img/system/icons/white/instagram.png);
}

/***Icons-gray***/
.gray_magnifier {
  background-image: url(../img/system/icons/gray/magnifier.png);
}
.gray_heart {
  background-image: url(../img/system/icons/gray/heart.png);
}
.gray_eye {
  background-image: url(../img/system/icons/gray/eye.png);
}
.gray_hot {
  background-image: url(../img/system/icons/gray/fire.png);
}
.gray_cart {
  background-image: url(../img/system/icons/gray/cart.png);
}
.gray_tripple {
  background-image: url(../img/system/icons/gray/tripple.png);
}

/***Icons-gold***/
.gold_magnifier {
  background-image: url(../img/system/icons/orange/magnifier.png);
}
.gold_heart {
  background-image: url(../img/system/icons/orange/heart.png);
}
.gold_eye {
  background-image: url(../img/system/icons/orange/eye.png);
}
.gold_hot {
  background-image: url(../img/system/icons/orange/fire.png);
}
.gold_cart {
  background-image: url(../img/system/icons/orange/cart.png);
}
.gold_tripple {
  background-image: url(../img/system/icons/orange/tripple.png);
}
.gold_facebook {
  background-image: url(../img/system/icons/orange/facebook.png);
}
.gold_twitter {
  background-image: url(../img/system/icons/orange/twitter.png);
}
.gold_instagram {
  background-image: url(../img/system/icons/orange/instagram.png);
}
/***Icons-green***/
.green_good {
  background-image: url(../img/system/icons/green/good.png);
}
.green_post {
  background-image: url(../img/system/icons/green/post.png);
}
/***Icons-red***/
.red_bad {
  background-image: url(../img/system/icons/red/bad.png);
}
/***ID***/
#subMenu {
  display: block;
}
/***Classes***/
.wrapper {
}

/***Articles***/
.wrapper-article {
  width: 90%;
  margin: 0 5%;
  font-family: SourceSansPro-regular;
}
.wrapper-article h4 {
  font-family: SourceSansPro-Bold;
}
.popular_article_content label,
.other_article_img label {
  font-family: SourceSansPro-Bold;
}
.hot_article_box {
  padding: 450px 0 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hot_article_box:after {
  position: relative;
  display: block;
  content: '';
  -webkit-transition: all 130ms 195ms ease-in-out;
  transition: all 130ms 195ms ease-in-out;
  background-image: -webkit-linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  z-index: 0;
  width: 100%;
  margin: -55px 0 0 0;
  height: 55px;
  opacity: 1;
}

.hot_article_box h4 {
  font-family: SourceSansPro-Bold;
  color: #ffffff;
  display: inline-block;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: auto 80%;
  padding: 0 0 0 30px;
}

.article_content {
  padding: 0 5% 10px 5%;
  position: relative;
  z-index: 1;
}

.hot_article_status {
  display: inline-block;

  float: right;
}

.article_status {
  float: left;
  color: #ffffff;
  font-size: 0.8em;
  padding: 0 0 0 25px;
  height: 20px;
  line-height: 20px;
  margin: 10px;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 15px;
}
.hot_article_hover {
  width: 100%;
  position: absolute;
  z-index: 2;
  display: block;
  margin: -450px 0 0 0;
  height: 450px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 3px solid #ffffff;
  text-align: center;
  transition: all 0.5s;
  opacity: 0;
}

.hot_article_hover a {
  display: inline;
  line-height: 400px;
  padding: 10px 50px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hot_article_box:hover .hot_article_hover {
  transition: all 0.5s;
  opacity: 1;
  width: 90%;
  border: 3px solid #ffffff;
  margin: -450px 0 0 5%;
  height: 400px;
}
.most_popular_article {
  width: 33.33%;
  float: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.most_popular_article:after {
  position: relative;
  display: block;
  content: '';
  -webkit-transition: all 130ms 195ms ease-in-out;
  transition: all 130ms 195ms ease-in-out;
  background-image: -webkit-linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  z-index: 0;
  width: 100%;
  margin: -55px 0 0 0;
  height: 55px;
  opacity: 1;
}
.popular_article_content {
  position: relative;
  z-index: 1;
  padding: 200px 0 10px 0;
}
.popular_article_content label {
  font-size: 1.3em;
  color: #ffffff;
  padding: 10px;
}

.most_popular_article_hover {
  position: absolute;

  z-index: 2;

  width: 100%;

  height: 230px;

  margin: -230px 0 0 0;

  border: 0px solid #ffffff;

  background-color: rgba(0, 0, 0, 0.8);

  text-align: center;

  transition: all 0.5s;

  opacity: 0;
}

.most_popular_article_hover div {
  display: inline-block;

  padding: 30px 20px 0 20px;

  margin: 40px 0 0 0;

  background-position: center top;

  background-repeat: no-repeat;

  background-size: 25px;

  color: #ffffff;
}

.most_popular_article_hover a {
  display: block;

  padding: 10px 0;

  margin: 20px 10%;

  text-align: center;

  color: #ffffff;

  border: 2px solid #ffffff;
}

.most_popular_article:hover .most_popular_article_hover {
  position: absolute;

  z-index: 2;

  width: 90%;

  height: 200px;

  margin: -215px 5% 0 5%;

  border: 3px solid #ffffff;

  background-color: rgba(0, 0, 0, 0.8);

  text-align: center;

  transition: all 0.5s;

  opacity: 1;
}

.most_popular_articles {
}

.articles_3column_box {
  width: 100%;

  margin: 10px 0px;
}

.articles_column {
  width: 33%;

  float: left;
}

.other_article {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);

  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);

  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);

  margin: 10px 2% 15px 2%;

  width: 96%;

  background-color: #ffffff;
}

.other_article_img {
  width: auto;
  padding: 150px 0 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.other_article_img:after {
  position: relative;
  display: block;
  content: '';
  -webkit-transition: all 130ms 195ms ease-in-out;
  transition: all 130ms 195ms ease-in-out;
  background-image: -webkit-linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  z-index: 0;
  width: 100%;
  margin: -45px 0 0 0;
  height: 55px;
  opacity: 1;
}

.other_article_img label {
  font-size: 1.3em;
  color: #ffffff;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.other_article_content {
  padding: 10px;
}

.other_article_content div {
  display: inline;
  padding: 5px 5px 5px 25px;
  background-position: center left;
  background-size: 15px;
  background-repeat: no-repeat;
}

.other_article_content p {
  text-align: justify;
  font-family: SourceSansPro-Regular;
}

.other_article_hover {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 166px;

  margin: -166px 0 0 0;

  text-align: center;

  transition: all 0.5s;

  opacity: 0;
}

.other_article_hover a {
  display: inline;

  padding: 10px 50px;

  text-align: center;

  color: #ffffff;

  border: 2px solid #ffffff;

  background-color: rgba(0, 0, 0, 0.8);

  line-height: 176px;
}

.other_article:hover .other_article_hover {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 166px;

  margin: -166px 0 0 0;

  text-align: center;

  transition: all 0.5s;

  opacity: 1;
}

/***Article-detail***/
.article_detail_wrapper {
  width: 70%;
  margin: 0 15% 50px 15%;
}

.article_box {
  width: 60%;
  float: left;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.article_box h4 {
  font-family: SourceSansPro-Bold;
}

.article_box p {
  font-family: SourceSansPro-Regular;
  padding: 5px;
  text-align: justify;
  font-size: 1.2em;
}
.article_box b span,
.article_box b {
  font-family: SourceSansPro-Bold;
}
.article_box a {
  color: #cc873a;
  transition: all 0.3s;
}
.article_box a:hover {
  text-decoration: underline;
  transition: all 0.3s;
}
a.article_status {
  color: #ffffff;
  text-decoration: none;
}
a.article_status:hover {
  color: #ffffff;
  text-decoration: none;
}
.article_column {
  padding: 15px;
}

.article_detail_box {
  padding: 300px 0 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.article_detail_box:after {
  position: relative;
  display: block;
  content: '';
  -webkit-transition: all 130ms 195ms ease-in-out;
  transition: all 130ms 195ms ease-in-out;
  background-image: -webkit-linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  z-index: 0;
  width: 100%;
  margin: -55px 0 0 0;
  height: 55px;
  opacity: 1;
}

.article_detail_box h4 {
  color: #ffffff;
  display: inline-block;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: auto 80%;
}

.detail_article_content {
  padding: 0 10px 10px 10px;
  position: relative;
  z-index: 1;
}

.article_status_detail {
  display: inline-block;
  float: right;
}

.article_detail_social {
  float: right;
  padding: 15px;
}

.article_detail_social label {
  float: left;
  line-height: 36px;
  padding: 0 10px;
}

.article_social {
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  float: left;
  margin: 0 2.5px;
}

.a_comments_box {
  width: 36%;
  padding: 10px 2%;
  float: left;
}

.comment_content {
  background-color: #ffffff;

  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);

  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);

  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);

  padding: 10px;

  margin: 0 0 15px 0;
}

.comment_img_box {
  width: 30%;

  float: left;
}

.comment_img {
  width: 70px;

  height: 70px;

  background-position: center;

  background-size: 100%;

  background-repeat: no-repeat;

  border-radius: 360%;

  margin: 0 2.5% 0 0;
}

.comment_info {
  width: 70%;

  float: left;
}

.comment_info label {
}

.comment_info p {
  padding: 10px 0;

  text-align: justify;
}

.comment_time {
  float: right;

  font-size: 0.8em;
}

.comment_panel {
  float: right;
}

.comment_panel_likes {
  padding: 5px 5px 5px 30px;

  background-position: center left;

  background-repeat: no-repeat;

  background-size: 25px;

  float: left;
}

.my_comment_box {
  padding: 10px;

  background-color: #dcdcdc;

  border: 1px solid #adadad;
}

.my_comment_box textarea {
  background-color: #ffffff;

  border: none;

  padding: 10px 5%;

  width: 90%;

  max-width: 90%;

  margin: 10px 0;
}

input[type='submit'].comment_post {
  float: right;

  border: 2px solid #4bb75a;

  padding: 10px 50px;

  cursor: pointer;

  background-position: center;

  background-size: auto 70%;

  background-repeat: no-repeat;

  background-color: transparent;
}

/***Restaurant-QR***/

.restaurant_qr_box {
  width: 100%;

  padding: 150px 0;

  background-repeat: no-repeat;

  background-position: center top;

  background-size: 100%;

  text-align: center;
}

.restaurant_qr_column {
  width: 40%;

  margin: 0 30%;

  padding: 20px;

  background-color: rgba(255, 255, 255, 0.7);

  border: 2px solid #ffffff;
}

.restaurant_qr_half {
  float: left;

  width: 50%;
}

.restaurant_qr_half a {
  width: 100%;

  height: 50px;

  padding: 50px 0;

  background-position: center;

  background-size: 90% auto;

  background-repeat: no-repeat;

  display: block;
}

.res_qr_logo {
  display: inline-block;

  width: 150px;

  height: 150px;

  border-radius: 360%;

  background-position: center;

  background-repeat: no-repeat;

  background-size: 100%;

  border: 3px solid #ffffff;
}

/**************************** Doporučuji - podnik ***************************/
.recommend-company-box {
  position: relative;
  padding: 100px 15%;
  background-position: 0 0;
  background-size: cover;
  background-repeat: repeat-x;
  background: url(../img/banner/bg_recommend.jpg);
  animation: animate 60s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.recommend-company-form {
}
.recommend-company-form input[type='text'],
.recommend-company-form input[type='password'],
.recommend-company-form input[type='number'],
.recommend-company-form input[type='email'],
.recommend-company-form select,
.recommend-company-form input[type='tel'],
.recommend-company-form input[type='date'],
.recommend-company-form input[type='time'] {
  width: 94%;
  float: left;
  padding: 15px 2.5% 15px 2.5%;
  border: none;
  margin: 5px 0.5%;
}
.recommend-company-form input[type='submit'] {
  padding: 15px 50px;
  border-radius: 360px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  float: right;
}
.recommend-company-form textarea {
  border: none;
  width: 97%;
  min-height: 100px;
  font-size: 1.3em;
  transition: all 0.5s;
  padding: 15px 1%;
  background-size: 0%;
  margin: 5px 0.5%;
  -webkit-outline: none;
  -moz-outline: none;
  outline: none;
}
.recommended-company-form-content {
  padding: 50px 0 0 0;
}
.recommend-captcha {
  margin: 15px 0;
  float: left;
}
.recommend-comp-1 {
  padding: 80px 0 0 0;
  margin: 50px 0;
  text-align: center;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 64px;
}
.recommend-comp-1 h4 {
  color: #d9a239;
}
.recommend-comp-2 {
  width: 100%;
  height: 600px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url(../img/banner/bg_cheff.jpg);
}
.recommend-comp-3 {
  width: 60%;
  margin: 100px 20%;
  text-align: center;
}
.recommend-comp-4 {
  position: relative;
  width: 100%;
  height: 250px;
  background-position: 0 0;
  background-size: cover;
  background-repeat: repeat-x;
  background: url(../img/banner/bg_recommended_shots.jpg);
  animation: animColague 120s linear infinite;
}
@keyframes animColague {
  0% {
    background-position: 0 0;
  }
  33% {
    background-position: 100% 50%;
  }
  66% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0 0;
  }
}
.recommend-comp-5 {
  text-align: center;
}
.recommend-cooldown-time {
  margin: 15px;
  font-size: 5em;
  background: -webkit-linear-gradient(top, #dba43b, #f56e68);
  background: -moz-linear-gradient(top, #dba43b, #f56e68);
  background: -ms-linear-gradient(top, #dba43b, #f56e68);
  background: -o-linear-gradient(top, #dba43b, #f56e68);
  background: linear-gradient(to top right, #dba43b, #f56e68);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.like-icon {
  background: url(../img/icons/like.png);
}
.share-icon {
  background: url(../img/icons/share.png);
}
.add-friend-icon {
  background: url(../img/icons/add_people.png);
}
.recommend-icon {
  width: 33%;
  padding: 85px 0 0 0;
  text-align: center;
  float: left;
  background-position: center top 15px;
  background-repeat: no-repeat;
  background-size: auto 64px;
  font-size: 1.5em;
}

/**************************** VOP ***************************/
.vop-banner {
  background-image: url(../img/banner/banner_gdpr.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  display: block;
  text-align: center;
}
.vop-wrapper {
  padding: 50px 25%;
}
.vop-wrapper p {
  text-align: justify;
  margin: 0 0 5px 0;
}
.vop-title {
  font-size: 2.5em;
  margin: 0 0 15px 0;
}
.vop-center,
p.vop-center {
  text-align: center;
}
.vop-small-title {
  font-size: 1.2em;
  color: #d9a239;
}
.little-p {
  font-size: 0.8em;
}
.vop-wrapper ul {
}
.vop-wrapper ul li {
  margin: 0 0 0 50px;
}
ul.vop-sub-li {
  margin: 0 0 0 25px;
}
.vop-login {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-image: url('../img/banner/bg_vop.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.password-gray-icon {
  background-image: url('/ui/system/icons/gray/password.svg');
}

/***Footer***/

footer {
  background-image: url(../img/system/graphic/footer_bg.png);
  background-color: #d9a239;
  background-size: 100%;
  background-position: center;
}
.footer_logo {
  width: 80%;
  padding: 100px 10% 25px 10%;
  background-image: url(../img/system/logo_white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 65px;
}
.footer_social_box {
  width: 50%;
  margin: 0 25%;
  text-align: center;
}
.footer_social {
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  margin: 5px;
}
.footer_category_box {
  display: none;
  width: 80%;
  padding: 25px 10%;
  color: #ffffff;
}
ul.footer_category {
  padding: 0;
  margin: 0;
  float: left;
  width: 25%;
  color: #ffffff;
}
li.footer_category_title {
  font-size: 1.2em;
  display: block;
  color: #ffffff;
  background: none;
  padding: 10px 0;
}

ul.footer_category li.footer_href {
  background-image: url(../img/system/icons/white/good.png);
  background-size: auto 18px;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 0 0 0 25px;
  display: block;
  color: #ffffff;
}
ul.footer_category li a {
  color: #ffffff;
}
.footer_signature {
  font-size: 0.8em;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px 5%;
}

/*************************************** GPS SYSTEM *************************************/
.gps-header-box {
  text-align: center;
  padding: 100px 0;
}
.gps-header-banner {
  width: 100%;
  height: 700px;
  background-image: url('../img/banner/gps_main_banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gps-banner-1 {
  width: 100%;
  height: 1000px;
  background-image: url('../img/banner/gps_banner_2.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  text-align: center;
}
.gps-banner-1-partners {
  position: absolute;
  width: 100%;
  bottom: 50px;
  z-index: 1;
  text-align: center;
}
.gps-banner-1-partners span,
.gps-banner-1-partners h4 {
  color: #ffffff;
  display: block;
}
.gps-partner {
  display: inline-block;
  width: 150px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 10px 10px 0 0;
}
.tesla {
  background-image: url('../img/icons/tesla_logo.png');
}
.skoda {
  background-image: url('../img/icons/skoda_logo.png');
}
.gps-banner-2 {
  width: 70%;
  margin: 50px 15%;
}
.gps-desc-2-left {
  width: 20%;
  text-align: justify;
  float: left;
}
.gps-desc-2-middle {
  width: 60%;
  height: 900px;
  background-image: url('../img/banner/gps_mobile_1.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  float: left;
}
.gps-desc-2-right {
  width: 20%;
  text-align: justify;
  float: right;
}
.gps-banner-3 {
  text-align: center;
  width: 100%;
}
.gps-banner-3-img {
  width: 100%;
  height: 700px;
  background-image: url('../img/banner/gps_banner_3.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

/********************************** DOWNLOAD FILES ***************************/
.files-wrapper,
.partners-wrapper {
  padding: 50px 5%;
  text-align: center;
}
.files-content,
.partners-content {
  margin: 50px 0;
}
.download-files {
  padding: 100px 10px 10px 10px;
  margin: 10px;
  min-width: 150px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  background-position: center top 10px;
  background-repeat: no-repeat;
  background-size: 50%;
  display: inline-block;
  opacity: 70%;
  transition: all 0.5s;
  font-family: 'SourceSansPro-Regular';
}
.download-files:hover {
  opacity: 100%;
  transition: all 0.5s;
}

.download-app-gps {
  background-image: url('../img/icons/gps_driver.png');
}
.download-app-central {
  background-image: url('../img/icons/eet.png');
}
.download-app-mobile {
  background-image: url('../img/icons/mobile.png');
}
.download-app-pc {
  background-image: url('../img/icons/website.png');
}
.download-app-call {
  background-image: url('../img/icons/headphones.png');
}

/** PARTNERS **/
.partners-wrapper h1,
.partners-wrapper h2,
.partners-wrapper h3,
.partners-wrapper h4 {
  color: #273b58;
}
ul.partners-menu {
  margin: 50px 0;
  text-align: center;
}
.partners-menu li {
  display: inline-block;
  padding: 10px;
  margin: 5px;
}
.partners-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
a.partner-column {
  display: inline-block;
  margin: 10px;
  border-radius: 10px;
  width: 300px;
  padding: 10px;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
}
.partner-hover-content {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid #273b58;
  transition: all 0.5s;
  transform: scale(1.1);
  opacity: 0;
  cursor: pointer;
}
a.partner-column:hover .partner-hover-content {
  transition: all 0.5s;
  transform: scale(1);
  opacity: 1;
}
.partner-column-logo img {
  transition: all 0.5s;
  height: 100px;
}
.partner-column-logo {
  margin: 0 0 10px 0;
  opacity: 0.4;
}
.partner-column span {
  font-size: 1.5em;
}
.partner-capability {
  color: #818181;
}
.partner-column button {
  padding: 10px 20px;
  margin: 15px 0 0 0;
  border-radius: 360px;
  border: none;
  color: #ffffff;
  background-color: #273b58;
}

/************************* REVIEWS - REFERENCE *************************/
.reference-box {
	width: 70%;
	margin: 50px 15%;
	text-align: center;
}
.videos-box {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
}
.videos-box .reference-video iframe {
    border-radius: 20px;
}
@media screen and (orientation: portrait) {
	.videos-box .reference-video iframe {
		width: 100%;
	}
	.banner-con-column {
		width: 100%;
	}
	
}

/***************** Calculator Column ***************/
.calculator-column {
	width: 100%; 
	height: 500px; 
	padding: 10px; 
	border: 1px solid #eaeaea; 
	border-radius: 20px;
}
@media screen and (orientation: portrait) {
	.calculator-column {
		height: 700px;
		width: 90%;
		padding: 10px 5%;
	}
	.calculator-column input[type='text'], .calculator-column input[type='password'],  .calculator-column input[type='number'], .calculator-column input[type='email'], .calculator-column select, .calculator-column input[type='tel'], .calculator-column input[type='date'], .calculator-column input[type='time'] {
		width: 80%;
		padding: 15px 15% 15px 5%;
	}
}

/************* Cookies ****************/

.cookies_wrapper{
  box-sizing: border-box;
  position: fixed;
  z-index: 99;
  bottom: 30px;
  left: 30px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
  text-align: center;
}
.cookies_wrapper.hide{
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.cookies_content header{
  color: #012943;
  font-size: 25px;
  font-weight: 700;
}
.cookies_content{
  margin-top: 10px;
}
.cookies_content p{
  color: #012943;
  margin: 5px 0 20px 0;
}
.cookies_content .cookies_buttons{
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookies_buttons button{
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 360px;
  border: 1px solid #012943;
  cursor: pointer;
  color: #012943;
  background-color: rgba(0, 0, 0, 0);
}

.cookies_buttons .cookies_accept{
    color: #fff;
    background-color: #012943;
}

.cookies_buttons .cookies_item{
  margin: 5px 10px;
}

.CookieDeclaration {
	display: none!important;
}

/****************************************** MOBILE *******************************************/

@media screen and (orientation: portrait) {
  /************** VOP ********************/
  .vop-wrapper {
    padding: 50px 5%;
  }

  /**************************** HOMEPAGES ******************************/

  /**************************** HEADER ******************************/
  .website-header-mini {
    width: 100%;
    height: 50px;
    background-color: #232323;
    background-image: url('../img/icons/logosymbol_white.png');
    background-repeat: no-repeat;
    background-position: center left 10%;
    background-size: auto 60%;
  }
  .header-menu {
    padding: 0;
    margin: 0 0 0 25%;
    width: 75%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: left;
    white-space: nowrap;
  }
  .header-menu li {
    display: inline-block;
    text-decoration: none;
  }

  /**************************** MENU ******************************/
  .website-menu {
    width: 80%;
    margin: 60px 10%;
  }
  .website-menu-services {
    margin: 60px 0;
  }
  .website-menu-services li {
    display: block;
    float: left;
    width: 50%;
    margin: 10px 0;
  }

  /**************************** BANNERS ******************************/
  #mainbanner {
    background-image: url('../img/banner/main_banner_mobile.jpg');
  }
  .banner-100 {
    width: 100%;
    display: block;
    margin: 10px 0;
  }
  .banner-100 a {
    background-size: cover;
  }
  .banner-100 a:hover {
    background-size: cover;
  }
  .banner-hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .banner-50-l {
    margin: 10px 0;
  }
  .banner-50-r {
    margin: 10px 0;
  }
  .banner-50-l,
  .banner-50-r {
    width: 100%;
    float: none;
    display: block;
  }
  .banner-50-l a,
  .banner-50-r a {
    background-size: cover;
  }
  .banner-50-l a:hover {
    background-size: cover;
  }
  .banner-50-r a:hover {
    background-size: cover;
  }

  /**************************** BLOG-BOX ******************************/
  .blog-box {
    background-size: cover;
    height: 300px;
  }
  .blog-box:hover {
    background-size: cover;
  }

  /**************************** FOOTER ******************************/
  .footer-column {
    padding: 10px 10%;
    width: 80%;
  }
  .footer-33 {
    width: 100%;
    float: none;
    display: block;
  }
  .footer-bottom {
    margin: 20px 10% 0 10%;
  }
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    width: 100%;
    height: 42px;
    line-height: 42px;
    display: block;
    float: none;
  }
  .footer-bottom-left {
    text-align: center;
    background-image: url(../img/icons/logo_white.svg);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
  .footer-bottom-center {
    text-align: center;
  }
  .footer-bottom-right {
    text-align: center;
  }

  /**************************** RECOMMENDED ******************************/

  .input-form {
    float: left;
    width: 100%;
  }
  .recommend-company-form {
    text-align: center;
  }
  .recommend-company-form input[type='submit'] {
    padding: 15px 50px;
    border-radius: 360px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: inline-block;
    float: none;
  }
  .recommend-company-box {
    padding: 100px 5%;
  }
  .recommend-comp-1 {
    padding: 100px 0 0 0;
  }
  .recommend-comp-2 {
    height: 300px;
    background-size: 100%;
  }
  .recommend-comp-3 {
    width: 90%;
    margin: 50px 5%;
    text-align: center;
  }
  .recommend-comp-4 {
    height: 350px;
    animation: animColague 240s linear infinite;
  }
  @keyframes animColague {
    0% {
      background-position: 0 0;
    }
    33% {
      background-position: 100% 50%;
    }
    66% {
      background-position: 50% 100%;
    }
    100% {
      background-position: 0 0;
    }
  }
  .recommend-comp-5 {
    text-align: center;
  }
  .recommend-cooldown-time {
    margin: 15px;
    font-size: 5em;
    background: -webkit-linear-gradient(top, #dba43b, #f56e68);
    background: -moz-linear-gradient(top, #dba43b, #f56e68);
    background: -ms-linear-gradient(top, #dba43b, #f56e68);
    background: -o-linear-gradient(top, #dba43b, #f56e68);
    background: linear-gradient(to top right, #dba43b, #f56e68);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  /**************************** CONTACT ******************************/
  .contact-header-box {
    padding: 60px 5%;
  }
  .contact-header-box h1 {
  }
  .contact-header-banner {
    background-size: 100% auto;
    margin: 50px 0 0 0;
    height: 200px;
  }
  .banner-contact-1 {
    width: 90%;
    padding: 0 5%;
  }
  .banner-con-column h1 {
    padding: 0 5% 30px 5%;
  }

  /**************************** EET SYSTEM ******************************/
  .eet-header-box h1 {
    margin: 0 10%;
  }
  .eet-header-banner {
    width: 100%;
    height: 300px;
  }
  .eet-banner-1 {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
  }
  .eet-banner-1-img {
    width: 100%;
    height: 160px;
    position: relative;
    display: block;
    float: none;
    background-size: 90% auto;
  }
  .eet-banner-1-desc {
    padding: 50px 10% 0 10%;
    width: 80%;
    display: block;
    float: none;
    height: auto;
  }
  .eet-banner-1-desc p {
    text-align: justify;
  }
  .eet-banner-2 {
    margin: 60px 0 0 0;
    text-align: center;
  }
  .eet-banner-2-box {
    margin: 50px 10%;
    width: 80%;
  }
  .eet-banner-column {
    float: none;
    width: 100%;
    margin: 20px 0;
    padding: 42px 0 0 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 36px;
  }
  .eet-banner-3 h1 {
    margin: 50px 10%;
  }
  .eet-banner-3-img {
    width: 100%;
    height: 300px;
  }
  .eet-banner-4 {
    margin: 50px 10%;
  }
  .eet-banner-4 h4 {
    text-align: justify;
  }
  .eet-banner-5 {
  }
  .eet-banner-5-img {
    margin: 50px 0 0 0;
    width: 100%;
    height: 300px;
    background-image: url('../img/banner/eet_detail_3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
/* POKUD NEBYLA POTREBA DO POSUD, TAK SMAZAT
  .bottom-friends-box {
  }
  .friend-column-30,
  .friend-column-40 {
    height: auto;
    padding: 20px 0 200px 0;
    float: none;
    overflow: hidden;
    background-position: center top 70px;
    background-repeat: no-repeat;
    background-size: 90%;
  }
  .friend-column-30:hover,
  .friend-column-40:hover {
    background-position: center bottom;
  }
  .friend-column-30 {
    width: 100%;
  }
  .friend-column-40 {
    width: 100%;
  }*/

  /**************************** APPLICATION ******************************/
  .app-banner-1-img {
    width: 100%;
  }

  .application-banner-2 {
    width: 90%;
    margin: 60px 5% 100px 5%;
  }
  .application-banner-2 h1 {
    margin: 0 0 20px 0;
  }

  .application-banner-3 {
    width: 90%;
    height: auto;
    padding: 60px 5%;
    position: relative;
    text-align: center;
    display: block;
  }
  .app-banner-3-column {
    display: inline-block;
    position: relative;
    top: auto;
    transform: none;
  }
  .app-banner-3-col30 {
    float: none;
    width: 90%;
    padding: 0 5%;
  }
  .app-banner-3-col40 {
    display: none;
    float: left;
    width: 40%;
  }
  .app-banner-3-desc {
    min-height: auto;
  }

  .app-banner-4-phone-1,
  .app-banner-4-phone-2,
  .app-banner-4-phone-3 {
    width: 150px;
    height: 350px;
  }

  .application-banner-5 {
    height: 500px;
  }
  .app-banner-5-absolute {
    height: 500px;
  }
  .app-banner-5-prev {
    width: 15%;
    height: 500px;
  }
  .app-banner-5-prev-btn,
  .app-banner-5-next-btn {
    height: 500px;
  }
  .app-banner-5-prev-btn {
    background-image: url('/ui/system/icons/gray/arrow_left.svg');
  }
  .app-banner-5-mobframe {
    width: 70%;
    height: 500px;
  }
  .app-banner-5-next {
    width: 15%;
    height: 500px;
  }
  .app-banner-5-slide-left {
    width: 15%;
    height: 500px;
  }
  .app-banner-5-slide-center {
    width: 70%;
    height: 500px;
  }
  .app-banner-5-slide-right {
    width: 15%;
    height: 500px;
  }
  .app-banner-5-slide-screen {
    height: 500px;
  }
  .app-banner-5-slide-none {
    display: none;
  }

  .app-banner-6-img {
    background-image: url('../img/banner/appliaction_left_bottom.png');
    background-repeat: no-repeat;
    background-position: top right -300px;
    background-size: auto 100%;
    width: 100%;
    height: 500px;
    float: none;
    margin: 0 0 0 0;
    display: block;
  }
  .app-banner-6-content {
    width: 90%;
    margin: 60px 0 0 0;
    padding: 60px 5% 210px 5%;
    float: none;
    text-align: center;
  }
  .app-banner-6-dev-col {
    float: none;
    display: inline-block;
    padding: 40px 2% 0 2%;
    width: 40%;
    background-image: url('/ui/system/icons/white/fire.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 36px;
    text-align: center;
  }

  .application-banner-7 {
    text-align: center;
    padding: 60px 0 60px 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/banner/mobile_bottom.png');
    background-repeat: no-repeat;
    background-position: center top 200px;
    background-size: 120%;
  }

  .application-banner-8 {
    width: 100%;
    padding: 150px 0;
    background-image: url('../img/banner/banner_food_mobile.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
  }
  .application-banner-8 h1,
  .application-banner-8 h4 {
    color: #ffffff;
    margin: 20px 0;
  }

  /**************************** ESHOP ******************************/

  .eshop-header-box h1,
  .eshop-header-box h4 {
    padding: 0 5%;
  }
  .eshop-header-banner {
    background-size: 90% auto;
    height: 350px;
  }
  .eshop-banner-1 h1 {
    font-size: 1.4em;
  }

  .eshop-banner-2 {
    padding: 60px 5% 250px 5%;
    background-position: center bottom;
    background-size: auto 250px;
  }

  .eshop-banner-3 {
    padding: 100px 5%;
  }
  .eshop-banner-3-img {
    height: 350px;
  }

  .eshop-banner-4 {
    padding: 60px 5%;
  }
  .eshop-banner-4-img {
    background-size: 100% auto;
  }

  .eshop-banner-5 {
    background-image: url('../img/banner/monitor_website.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 90% auto;
    padding: 60px 5% 400px 5%;
  }

  /**************************** Telephone System ******************************/
  .telephoneSystem-header-box {
    padding: 60px 5%;
  }
  .telephoneSystem-header-banner {
    background-size: 120% auto;
    height: 250px;
  }
  .telephoneSys-banner-1 {
    padding: 60px 10%;
  }
  .telephoneSys-banner-2 {
    padding: 60px 5%;
  }
  .telephoneSys-2-img {
    width: 100%;
    height: 350px;
    margin: 60px 0;
    background-image: url('../img/banner/eet_greenscreen.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .telephoneSys-banner-3 {
    margin: 60px 0;
    padding: 550px 5% 60px 5%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 90% auto;
  }
  .telephoneSys-banner-3 h4 {
    text-align: justify;
  }

  /**************************** CONTACT ******************************/
  .banner-con-option {
    display: block;
    width: 90%;
    float: none;
    padding: 64px 5% 20px 5%;
    background-position: center top 15px;
    background-repeat: no-repeat;
    background-size: 32px;
  }

  /**************************** ANIMATIONS ******************************/

  /********** MARG-TOP *********/
  #eshop1,
  .eshop1,
  .eshop2,
  .eshop3,
  #eshop4,
  #eshop5,
  #eshop6,
  #eshop7,
  #eshop8,
  #eshop9 {
    opacity: 1;
    margin-top: 0px;
    transition: all 1s;
  }
  /********** MARG-LEFT *********/
  #eshop2,
  #eshop3,
  #eshop11,
  #eshop12 {
    opacity: 1;
    margin-left: 0px;
    transition: all 1s;
  }
  #eshop1.animate,
  .eshop1.animate,
  #eshop4.animate,
  #eshop6.animate,
  #eshop8.animate {
    opacity: 1;
    margin-top: 0;
    transition: all 1s;
  }
  #eshop5.animate,
  #eshop7.animate,
  #eshop9.animate {
    opacity: 1;
    margin-top: 0;
    transition: all 1s;
  }
  #eshop2.animate,
  #eshop3.animate,
  #eshop11.animate {
    opacity: 1;
    margin-left: 0;
    transition: all 1s;
  }
  .eshop2.animate {
    opacity: 1;
    margin-top: 0;
    transition: all 1s;
  }
  .eshop3.animate {
    opacity: 1;
    margin-top: 0;
    transition: all 1s;
  }

  /*************************************** GPS SYSTEM *************************************/
  .gps-header-box {
    text-align: center;
    padding: 50px 5%;
  }
  .gps-header-banner {
    height: 300px;
  }
  .gps-banner-1 {
    width: 90%;
    height: auto;
    padding: 700px 5% 50px 5%;
  }
  .gps-desc-2-left {
    width: 100%;
    float: none;
  }
  .gps-desc-2-middle {
    width: 100%;
    height: 450px;
    float: none;
  }
  .gps-desc-2-right {
    width: 100%;
    text-align: justify;
    float: none;
  }
  .gps-banner-3 h4 {
    width: 80%;
    margin: 0 10%;
  }

  /**************************** END-HOMEPAGE ******************************/

  /***ID***/
  #subMenu {
    display: none;
  }
  input[type='button']#show {
    display: none;
  }
  /***Articles***/

  .hot_article_box {
    background-size: cover;
    padding: 300px 0 0 0;
  }

  .hot_article_box:after {
    margin: -105px 0 0 0;
    height: 105px;
  }

  .hot_article_hover {
    width: 100%;
    position: absolute;
    z-index: 2;
    display: block;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    text-align: center;
    transition: all 0.5s;
    opacity: 0;
  }

  .hot_article_hover a {
    display: inline;

    line-height: 300px;

    padding: 10px 50px;

    text-align: center;

    color: #ffffff;

    border: 2px solid #ffffff;
  }

  .hot_article_box:hover .hot_article_hover {
    transition: all 0.5s;

    opacity: 1;

    width: 100%;

    border: none;

    border-top: 3px solid #ffffff;

    border-bottom: 3px solid #ffffff;

    margin: -330px 0 0 0;

    height: 300px;
  }

  .most_popular_article {
    width: 100%;

    float: none;

    background-position: center;

    background-size: auto 100%;

    background-repeat: no-repeat;

    margin: 0 0 5px 0;
  }

  .articles_column {
    width: 100%;

    float: none;
  }

  .other_article_img {
    width: auto;
    padding: 150px 0 0 0;
  }

  /***Article-detail***/

  .article_box {
    width: 100%;

    float: none;
  }

  .article_detail_box {
    background-size: cover;
  }

  .a_comments_box {
    width: 96%;

    padding: 10px 2%;

    float: none;
  }

  .hot_article_box h4 {
    background-size: auto 30px;
  }

  /***Restaurant-QR***/

  .restaurant_qr_box {
    width: 100%;
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    text-align: center;
  }

  .restaurant_qr_column {
    width: 85%;
    margin: 0 5%;
    padding: 2.5%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #ffffff;
  }

  .restaurant_qr_half {
    float: none;
    width: 100%;
  }

  /***Footer***/
  .footer_social_box {
    width: 90%;
    margin: 0 5%;
    text-align: center;
  }

  .footer_category_box {
    width: 90%;
    padding: 25px 5%;
    color: #ffffff;
  }

  ul.footer_category {
    padding: 0;
    margin: 0;
    float: left;
    width: 50%;
    color: #ffffff;
  }
}

.article_column li {
  margin-left: 40px;
}

/* eTable */
#etable-wrapper {
  overflow-x: hidden;
}
#etable-wrapper .heading-1 {
  text-align: center;
  margin: 100px 1em 50px 1em;
}

#etable-banner-1 {
  background-image: url('../img/banner/e-table-banner-1.png');
  padding-bottom: 170vw;
  background-size: auto 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

#etable-banner-1 > .heading {
  width: 100%;
  position: absolute;
  top: 90vw;
  padding: 1em 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: #273b58;
  text-align: center;
}

#etable-banner-2 {
  background-image: url('../img/banner/e-table-banner-2.png');
  padding-bottom: 80vw;
  background-size: auto 100%;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -30vw;
  margin-right: -35vw;
  position: relative;
}

#etable-banner-2-description {
  position: relative;
  padding: 3.5em 1em;
  border-radius: 1.5em;
  width: 60%;
  max-width: 400px;
  margin-top: -80%;
  margin-left: 10%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #273b58;
}

#etable-banner-3 {
  background-image: url('../img/banner/e-table-banner-3.png');
  background-size: auto 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 60vw;
}

#etable-banner-3-description {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.5em;
}

#etable-banner-3-description .heading {
  text-align: center;
}

#etable-banner-3-description .container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

#etable-banner-3-description .container > div {
  width: 40%;
  flex-grow: 1;
  padding: 2.75em 1em 0 1em;
  margin: 1em 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 2.5em;
}

#etable-banner-3-description .container .icon-1 {
  background-image: url('../img/icons/e-table-icon-1.png');
}
#etable-banner-3-description .container .icon-2 {
  background-image: url('../img/icons/e-table-icon-2.png');
}
#etable-banner-3-description .container .icon-3 {
  background-image: url('../img/icons/e-table-icon-3.png');
}
#etable-banner-3-description .container .icon-4 {
  background-image: url('../img/icons/e-table-icon-4.png');
}
#etable-banner-3-description .container .icon-5 {
  background-image: url('../img/icons/e-table-icon-5.png');
}
#etable-banner-3-description .container .icon-6 {
  background-image: url('../img/icons/e-table-icon-6.png');
}

#etable-friends {
  margin-top: 5em;
  text-align: center;
}

@media (orientation: landscape) {
  #etable-banner-1 {
    padding-bottom: 2000px;
  }
  #etable-banner-1 > .heading {
    top: 1000px;
    background-color: transparent;
    color: #fff;
    font-family: SourceSansPro-Regular;
  }
  #etable-banner-2 {
    padding-bottom: 1050px;
    margin-top: -920px;
    margin-right: -50%;
  }
  #etable-banner-2-description {
    max-width: 600px;
    width: 50%;
    margin-top: -700px;
  }
  #etable-banner-2-description p {
    font-size: 1.6rem;
  }
  #etable-banner-3 {
    padding-bottom: 700px;
    margin-left: -40%;
    margin-top: 300px;
  }
  #etable-banner-3-description-wrapper {
    width: 60%;
    margin: 0 auto;
  }
  #etable-banner-3-description {
    margin-top: -550px;
    float: right;
    transform: translateX(25%);
  }
}

/* Mobile Waiter */
#mobile-waiter {
  overflow-x: hidden;
}
#mobile-waiter .heading-1 {
  text-align: center;
  margin: 100px 1em 50px 1em;
}
#mobile-waiter-banner-1 {
  padding-bottom: 48vw;
  background-image: url('../img/banner/mobilni-cisnik-banner-1.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
#mobile-waiter .heading-2 {
  margin: 100px 1em;
  text-align: center;
}

#mobile-waiter .blue-block-message {
  padding: 6em 0;
  text-align: center;
  background-color: #273b58;
}
#mobile-waiter .blue-block-message p {
  color: #fff;
  font-size: 1.6rem;
  padding: 0 1em;
}
#mobile-waiter-banner-2 {
  padding-bottom: 140vw;
  background-image: url('../img/banner/mobilni-cisnik-banner-2.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-top: -40px;
}
#mobile-waiter .requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.5em;
  width: 90%;
  margin: 0 auto;
}
#mobile-waiter .requirement {
  margin-top: 2em;
  text-align: center;
}

#mobile-waiter .heading-3 {
  background-image: url('/ui/system/icons/gray/magnify.svg');
  background-size: 2em;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  padding: 2em 1.5em 0 1.5em;
  margin: 2em 0;
}

@media (orientation: landscape) {
  #mobile-waiter p {
    font-size: 1.5rem;
  }
  #mobile-waiter-banner-1 {
    padding-bottom: 500px;
  }
  #mobile-waiter-banner-2 {
    padding-bottom: 800px;
  }
  #mobile-waiter .requirements {
    margin-top: -550px;
    grid-template-areas:
      'feature-1 . feature-2'
      'feature-3 . feature-4';
    grid-template-columns: 200px 450px 200px;
    justify-content: center;
  }
  #mobile-waiter .requirement-1 {
    grid-area: feature-1;
  }
  #mobile-waiter .requirement-2 {
    grid-area: feature-2;
  }
  #mobile-waiter .requirement-3 {
    grid-area: feature-3;
  }
  #mobile-waiter .requirement-4 {
    grid-area: feature-4;
  }
  #mobile-waiter .heading-3 {
    width: 60%;
    margin: 12.5em auto 5em auto;
  }
}

/* Smart Warehouse */
#smart-warehouse {
  overflow-x: hidden;
}
#smart-warehouse p {
  font-size: 1.5rem;
}
#smart-warehouse .heading-1 {
  text-align: center;
  margin: 100px 1em 0 1em;
  width: 100%;
}
#smart-warehouse #parallax-1 {
  overflow: hidden;
  margin-top: 5em;
}
#smart-warehouse #parallax-1 .layer {
  pointer-events: none;
  user-select: none;
}
#smart-warehouse #parallax-1 .layer img {
  width: 100%;
}
#smart-warehouse .heading-2 {
  text-align: center;
}
#smart-warehouse .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
  margin: 2em 0;
}
#smart-warehouse .features .feature {
  max-width: 150px;
  margin: 1em;
  padding-top: 3em;
  background-position: center top;
  background-size: 2.5em;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 1.4rem;
}
#smart-warehouse .features .feature-1 {
  background-image: url('../img/icons/cloud.svg');
  background-size: 3.5em;
}
#smart-warehouse .features .feature-2 {
  background-image: url('../img/icons/network.svg');
  background-size: 3em;
}
#smart-warehouse .features .feature-3 {
  background-image: url('../img/icons/qr.svg');
}
#smart-warehouse .features .feature-4 {
  background-image: url('../img/icons/knife.svg');
}
#smart-warehouse .features .feature-5 {
  background-image: url('../img/icons/flash.svg');
}
#smart-warehouse .flow-box {
  position: relative;
  background-color: rgba(39, 59, 88, 0.9);
  padding: 4em 1em;
}
#smart-warehouse .flow-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/banner/smart-sklad-flow.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
#smart-warehouse .flow-box div {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}

#smart-warehouse .flow-box .line {
  background-color: #fff;
  position: relative;
}
#smart-warehouse .flow-box .circle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#smart-warehouse .flow-box .line-1,
#smart-warehouse .flow-box .line-2,
#smart-warehouse .flow-box .line-3 {
  height: 100px;
  width: 1px;
  margin: 10px auto;
}
#smart-warehouse .flow-box .line-1 .circle,
#smart-warehouse .flow-box .line-2 .circle {
  top: 50%;
}
#smart-warehouse .flow-box .line-3 {
  margin-bottom: 0;
}
#smart-warehouse .flow-box .line-4 {
  height: 1px;
  margin: 0 1em;
}
#smart-warehouse .flow-box .line-4 .circle-1 {
  left: 0%;
}
#smart-warehouse .flow-box .line-4 .circle-2 {
  left: 30%;
}
#smart-warehouse .flow-box .line-4 .circle-3 {
  left: 50%;
}
#smart-warehouse .flow-box .line-4 .circle-4 {
  left: 70%;
}
#smart-warehouse .flow-box .line-4 .circle-5 {
  left: 100%;
}
#smart-warehouse .flow-box .line-4 .circle .media {
  padding-top: 4.5em;
  position: absolute;
  width: 80px;
  left: -30px;
  font-size: 1.1rem;
  background-size: 2.5em;
  background-position: center top 2em;
  background-repeat: no-repeat;
}
#smart-warehouse .flow-box .line-4 .circle .media-eshop {
  
  background-image: url('../img/icons/eshop.svg');
}
#smart-warehouse .flow-box .line-4 .circle .media-app-android {
  background-size: 2em;
  background-image: url('../img/icons/android.svg');
}

#smart-warehouse .flow-box .line-4 .circle .media-app-apple {
  background-size: 1.8em;
  background-image: url('../img/icons/apple.svg');
}
#smart-warehouse .flow-box .line-4 .circle .media-app-android span,
#smart-warehouse .flow-box .line-4 .circle .media-app-apple span {
  color: #fff;
  font-size: 0.9rem;
}
#smart-warehouse .flow-box .line-4 .circle .media-ebase {
  background-image: url('../img/icons/ebase.svg');
}
#smart-warehouse .flow-box .message {
  padding-top: 8em;
}
#smart-warehouse .heading-3 {
  margin: 3em 1em;
  text-align: center;
}
@media (orientation: landscape) {
  #smart-warehouse .flow-box .line-4 {
    max-width: 600px;
    margin: 0 auto;
  }
  #smart-warehouse .flow-box .line-4 .circle .media {
    left: -55px;
    width: 130px;
    font-size: 1.5rem;
  }
}
