@charset "UTF-8";

/* Usage:

.my-box {
  padding: 10px;

  @include for-desktop-up {
    padding: 20px;
  }
}

*/
html {
    font-family: "Roboto", sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto;
}

input[type=search] {
    -webkit-appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* ------ Fonts, default styles ------ */
/* ------ Fonts ------ */
.ui-widget,
button,
input,
select,
textarea,
body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

/* ------ */
a {
    text-decoration: none;
    color: #333;
}

p {
    line-height: 1.2em;
    margin: 1em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1em 0;
}

:focus {
    outline: none;
}

/* ------ Simple content ------ */
.simple-content hr {
    border: 0;
    color: #ccc;
    background-color: #ccc;
    height: 1px;
    margin: 1em 0;
}


/* ------ Input placeholders ------ */
.placeholder {
    color: #663300;
}

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

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

::-moz-placeholder {
    color: #663300;
    opacity: 1;
}



/* ------ Forms ------ */
:focus {
    outline: none;
}

.form-row {
    margin-bottom: 12px;
}

.form-row label {
    display: block;
    padding-bottom: 6px;
}

.form-default input[type=text],
.form-default input[type=password],
.form-default input[type=tel],
.form-default input[type=email],
.form-default input[type=number],
.form-default textarea {
    width: 100%;
    padding: 0.5em 1em;
    border: 1px solid #dce6e8;
}

/* ------ Buttons ------ */
.btn-primary,
.btn-secondary,
.btn-transparent {
    display: inline-block;
    border-radius: 20px;
    border: 1px solid #FEC254;
    padding: 4px 15px;
    color: #FEC254;
}

.btn-primary {
    background: #FEC254;
    color: #fff;
}

.btn-secondary {
    border-color: #fff;
}

/* ------ Common plugin fix ------ */
/* Owl carousele items flickering before slide fixed */
.owl-item {
    z-index: -1;
}

/* ------ Common helpers ------ */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tar {
    text-align: right;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.date {
    color: #ccc;
}

/* ------ Clearfix ------ */
.row:before,
.row:after,
.clearfix:before,
.clearfix:after,
.form-row:before,
.form-row:after {
    content: "";
    display: table;
}

.row:after,
.clearfix:after,
.form-row:after {
    clear: both;
}

.row,
.clearfix,
.form-row {
    zoom: 1;
}

.h-capitalize {
    text-transform: capitalize;
}

.h-lowercase {
    text-transform: lowercase;
}

/* ------ Box model set ------ */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

/* ------ Site layout ------ */
.site-block {
    margin: 0 auto;
    max-width: 1200px;
}

/* ------ Columns system ------ */
.row {
    margin: 0 -20px;
}

@media (max-width: 1024px) {
    .row {
        margin: 0 -15px;
    }
}

@media (max-width: 640px) {
    .row {
        margin: 0 -10px;
    }
}

.col-1-of-2,
.col-1-of-3,
.col-2-of-3,
.col-1-of-4,
.col-3-of-4,
.col-1-of-5,
.col-2-of-5,
.col-3-of-5,
.col-1-of-6,
.col-1-of-12 {
    float: left;
}

.row>.col-1-of-2,
.row>.col-1-of-3,
.row>.col-2-of-3,
.row>.col-1-of-4,
.row>.col-3-of-4,
.row>.col-1-of-5,
.row>.col-2-of-5,
.row>.col-3-of-5,
.row>.col-1-of-6,
.row>.col-1-of-12 {
    padding: 0 20px;
}

@media (max-width: 1024px) {

    .row>.col-1-of-2,
    .row>.col-1-of-3,
    .row>.col-2-of-3,
    .row>.col-1-of-4,
    .row>.col-3-of-4,
    .row>.col-1-of-5,
    .row>.col-2-of-5,
    .row>.col-3-of-5,
    .row>.col-1-of-6,
    .row>.col-1-of-12 {
        padding: 0 15px;
    }
}

@media (max-width: 640px) {

    .row>.col-1-of-2,
    .row>.col-1-of-3,
    .row>.col-2-of-3,
    .row>.col-1-of-4,
    .row>.col-3-of-4,
    .row>.col-1-of-5,
    .row>.col-2-of-5,
    .row>.col-3-of-5,
    .row>.col-1-of-6,
    .row>.col-1-of-12 {
        padding: 0 10px;
    }
}

.row>.no-padding {
    padding-left: 0px;
    padding-right: 0px;
}

.row>.no-padding-right {
    padding-right: 0px;
}

.row>.no-padding-left {
    padding-left: 0px;
}

.col-1-of-2.fr,
.col-1-of-3.fr,
.col-2-of-3.fr,
.col-1-of-4.fr,
.col-3-of-4.fr,
.col-1-of-5.fr,
.col-2-of-5.fr,
.col-3-of-5.fr,
.col-1-of-6.fr,
.col-1-of-6.fr {
    float: right;
}

.col-1-of-2 {
    width: 50%;
}

.col-1-of-3 {
    width: 33.33333%;
}

.col-2-of-3 {
    width: 66.6666%;
}

.col-1-of-4 {
    width: 25%;
}

.col-3-of-4 {
    width: 75%;
}

.col-1-of-5 {
    width: 20%;
}

.col-2-of-5 {
    width: 40%;
}

.col-3-of-5 {
    width: 60%;
}

.col-1-of-6 {
    width: 16.66666%;
}

.col-1-of-12 {
    width: 8.33333%;
}

/* ------ Site Header styles ------ */
body {
    overflow: hidden;
}

/*------------------------------------*\
  #Native scrollbars style change
  \*------------------------------------*/
  /* Let's get this party started */
  ::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FEC254;
    border-radius: 5px;
}

.main-menu::-webkit-scrollbar-thumb {
    background: white;
}

/*------------------------------------*\
  #Layout
  \*------------------------------------*/
  .app {
    width: 1920px;
    height: 1080px;
    position: relative;
    overflow: hidden;
}

.app__sidebar {
    position: absolute;
    width: 317px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    background: #fff;
    z-index: 15;
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    -webkit-transition: width 0.2s;
    transition: width 0.2s;
}

.app__main-content {
    position: fixed;
    width: calc(100% - 332px);
    width: 1920px;
    height: 1080px;
    right: 0px;
    top: 0px;
    background: #fff;
    z-index: 10;
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    -webkit-transition: width 0.2s;
    transition: width 0.2s;
}

.popup {
    position: absolute;
    color: #000000;
    background: #77023f;
    background: #ffffff;
    z-index: 1;
    display: none;
    border: solid 1px #77023f;
    box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.21);
    transition: transform 0.4s;
}

.popup-anchor {
    position: absolute;
}

/*
    .layout-state--2
    - Bigger sidebar 
    - Smaller map content area
    */
    .layout-state--2 .app__sidebar {
        width: 436px;
    }

    .layout-state--2 .app__main-content {
        width: calc(100vw - 550px);
    }



/*------------------------------------*\
  #Logo back wrap
  \*------------------------------------*/
  .logo-back-wrap {
    overflow: hidden;
    background: #fff;
}



.submenu-lvl-2-close {
    position: absolute;
    width: 390px;
    height: 140px;
    left: 0px;
    top: 0px;
    z-index: 10;
    display: none;
}

.lvl-2-menu-visible .submenu-lvl-2-close {
    display: block;
}

/*------------------------------------*\
  #Main-logo
  \*------------------------------------*/
  .main-logo {
      margin-bottom: 3px;
      justify-content: center;
      height: 202px;
      display: flex;
      align-items: center;
      background: #FEC254;
  }

  .main-logo img {
    vertical-align: top;
    width: 180px;
    height: 130px;
}

/*------------------------------------*\
  #Main search
  \*------------------------------------*/
  .app__main-search {
    position: fixed;
    display: none;
    top: 0;
    background: #fff;
    box-shadow: 50px 0px 50px -50px #EAEAEA;
    bottom: 0;
    width: 368px;
    left: 107px;
    z-index: 999;
}


.app__main-search.active {
    display: block;
}

.app__main-search.active .main-search__close {
    display: block;
}


/* Search results */
.search-results {
    position: absolute;
    display: none;
    overflow: auto;
    top: 207px;
    bottom: 0;
    left: 0;
    right: 0;
}

.app__main-search h2 {

font-weight: bold;
text-transform: uppercase;
font-size: 40px;
line-height: 47px;
color: #000000;
text-align: center;
margin: 0;
padding: 57px 0 0;
}

.app__main-search .note {
font-weight: normal;
font-size: 18px;
line-height: 141.69%;
text-align: center;
padding: 14px 0 61px;

color: #FEC254;
}

.active .search-results {
    display: block;
}

.search-results .results-title,
.search-results .msg--short-search-term,
.search-results .msg--not-found,
.search-results .search-loading {
    color: #b7b7b7;
    padding: 12px 40px;
    border-bottom: 1px solid #b7b7b7;
    color: #b7b7b7;
}

.search-results .msg--not-found,
.search-results .search-loading,
.search-results .msg--short-search-term {
    color: #0a0202;
    background: none;
}

.search-results a {
    display: block;
    padding: 12px 40px;
    border-bottom: 2px solid #fff;
}

/*------------------------------------*\
  #Accesable-link
  \*------------------------------------*/
  .accesable-link {
    position: absolute;
    left: 460px;
    bottom: 40px;
    display: inline-block;
    width: 130px;
    overflow: hidden;
    display: none;
}

.accesable-link img {
    float: left;
}

.accesable-link .title {
    text-transform: uppercase;
    width: 70px;
    float: left;
    padding-top: 5px;
    padding-left: 10px;
}

/*------------------------------------*\
  #Main-menu
  \*------------------------------------*/
  .app__sidebar-content {
    height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
}

.app__menu  {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/*Back*/
.menu-lvl-back {
    position: absolute;
    left: 0px;
    top: 190px;
    z-index: 15;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 500;
    padding-left: 40px;
}

.menu-lvl-back i {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -11px;
    color: #e21b46;
}

/**/
.main-menu {
    position: relative;
    height: 100%;
    text-align: left;
}

.main-menu>li:last-child {
    border-bottom: none;
}

.main-menu>li>.menu-item > div:last-child {
    width: 100%;
    flex-grow: 1;
}

.main-menu>li>.menu-item {
    display: block;
    padding: 20px 20px;
    padding-left: 107px;
    position: relative;
    font-size: 21px;
    background: #F2F2F2;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    color: #000000;
    text-transform: uppercase;
}

.main-menu>li {
    padding-bottom: 4px;
    flex-grow: 1;
}

.main-menu>li>.menu-item {
    position: relative;
    height: 100%;
}


.main-menu>li>.menu-item.no-events {
    pointer-events: none;
}

.main-menu .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu>.active>.menu-item {
    background: #FEC254;
    color: #fff;
}

.main-menu>.active>.menu-item img  {
    filter: brightness(0) invert(1);
}

.main-menu_submenu {
    position: absolute;
    left: 100%;
    top: 0px;
    margin: -205px 0 -94px;
    background: #FFFFFF;
    width: 316px;
    box-shadow: 50px 0px 50px -50px #EAEAEA;
    bottom: 0;
    z-index: 5;
    display: none;
    overflow: auto;
}

.active .main-menu_submenu {
    display: flex;
}

.search-result-item a,
.submenu__item > a {
    min-height: 70px;
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    padding: 15px 30px;
    text-transform: uppercase;


    color: #000000;

}

.submenu__item .shops-menu  ul{
    margin: auto 0;

}

.search-result-item img,
.submenu__item .shops-menu  img {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    object-fit: contain;
    right: 0;
    margin: auto 0;

}

.search-result-item a,
.submenu__item .shops-menu  a {
    display: flex;
    align-items: center;min-height: 70px;

    font-size: 16px;
    line-height: 19px;
    position: relative;
    padding: 15px 30px;
    padding-left: 120px;
    color: #000000;
    z-index: 4;

}

.submenu__item .shops-menu .active a:before {

    position: absolute;
    top: 0;
    bottom: 0;
    left: 93px;
    right: 0;
    z-index: -1;
    content: "";
    background: #FEC254;
}

.submenu__item .shops-menu .active a {
    color: #fff;

}

.submenu__item .shops-menu {
    position: absolute;
    top: 0;
    background: #fff;
    bottom: 0;
    left: 0;
    overflow: auto;
    right: 0;
    display: none;
}

.submenu__item.active .shops-menu {
    display: flex;
}

.main-menu_submenu ul {
    margin: auto 0;
    padding: 0;
}

.main-menu_submenu .active>a {
    color: #FEC254;
}

.submenu-label img {
    width: 78px;
    height: 78px;
    display: block;
    margin: auto;
    object-fit: contain;
}

.submenu-label {
    display: block;
    padding: 20px 0 0;
}

.main-menu_submenu .category-back-link {
    position: absolute;
    left: 100%;
    top: 0px;
    display: none;
    z-index: 10;
    font-weight: 400;
    padding-left: 30px;
    width: 100%;
}

.main-menu_submenu .category-back-link i {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -10px;
}

.main-menu_submenu .category-back-link i,
.main-menu_submenu .category-back-link span {
    pointer-events: none;
}

.submenu__item.active>.category-back-link {
    display: block;
}


/* Small side menu */
.current-cat {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    padding: 0;
    font-size: 26px;
    line-height: 44px;
    text-transform: uppercase;
    margin: 166px 0;
    text-align: center;
    pointer-events: none;
    right: 0;
    z-index: 11;
}
.lvl-2-menu-visible .current-cat {
    display: block;
}
.lvl-2-menu-visible .main-menu_submenu {
    left: 107px;
    right: -120px;
}
.lvl-2-menu-visible .submenu__item:not(.active) {
    display: none;
}

.full-menu-switch {
    position: absolute;
    color: #fff;
    left: 0;
    top: 0;
    height: 201px;
    width: 107px;
    background: #FEC254 url(../img/menu.svg) no-repeat center center;
    padding-top: 80px;
    text-align: center;
    display: none;
}

.search-active .full-menu-switch,
.lvl-2-menu-visible .full-menu-switch,
.small-side-menu .full-menu-switch {
    display: block;
}


.main-menu {
    width: 317px;
}

.intro-visible .app__sidebar-content {
    width: 107px;
    overflow: hidden;
}

.logo-back-wrap {
    background: none;
}

.app_logo {
    background: #fff;
    transition: opacity 0.3s;
}

.intro-visible .app_logo {
    opacity: 0;
}

/*------------------------------------*\
  #Main menu container 
  \*------------------------------------*/
  .main-menu-container {
    position: absolute;
    left: 375px;
    top: 0;
    z-index: 20;
    width: 1040px;
}

.top-menu {
    position: static;
    width: 1040px;
    box-shadow: none;
    border: none;
}

.top-menu>li {
    float: left;
    width: 20%;
    border-bottom: none;
}

.top-menu>li>.menu-item {
    text-transform: none;
    font-size: 19px;
    padding-top: 91px;
}

.top-menu>.active {
    background: #acc836;
}

.top-menu>.active>.menu-item,
.top-menu>li>.menu-item.active {
    color: #fff;
    background: none;
}

.top-menu>li>.menu-item {
    height: 95px;
    padding: 0;
    margin-top: 81px;
}

.top-menu .icon {
    left: 10px;
}

.top-menu .icon:before {
    width: 34px;
    height: 34px;
    display: inline-block;
    position: absolute;
    right: 6px;
    bottom: 19px;
    background: url(../img/bg-decoration.svg) no-repeat left top;
    background-size: 34px;
    content: "";
    opacity: 0.3;
    z-index: 1;
}

.top-menu .active .icon:before {
    display: none;
}

.top-menu .icon i {
    z-index: 5;
}

.top-menu .icon img {
    max-width: 62px;
    max-height: 62px;
}

.menu-item__text {
    position: absolute;
    left: 91px;
    right: 20px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -3px;
}

/*------------------------------------*\
  #App-top
  \*------------------------------------*/
  .app__top {
    position: absolute;
    right: 0px;
    top: 0px;
    left: 332px;
    z-index: 15;
}

/*------------------------------------*\
  #Language menu
  \*------------------------------------*/
  .language-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: -4px;
    display: flex;
}

.language-menu li {
    width: 99px;
    height: 95px;

    background: #F2F2F2;
    margin-left: 4px;
}

.language-menu li {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    line-height: 23px;
    color: #000;

    text-transform: uppercase;
    cursor: pointer;
}

.language-menu span {
    width: 50px;
    display: block;
}

.language-menu .active {
    background: #FEC254;
    font-weight: bold;
    color: #fff;
}

/*------------------------------------*\
  #Weather box
  \*------------------------------------*/
  .weather-box {
    position: absolute;
    top: 0;
    bottom: 0;

    padding-top: 37px;
    text-align: center;
    width: 317px;
    z-index: 10;
    background: #fff;
box-shadow: 0px 0px 50px #EAEAEA;
    right: 0;
    z-index: 20;
}

.weather__temperature,
.weather__location {
    display: inline-block;
    position: relative;
}

.discount-r-item img {
    object-fit: cover;
    height: 108px;
    width: 100%;
}

.discount-r-item a {
    margin-bottom: 25px;
    display: block;
}

.discounts-right {
    overflow: auto;
    padding: 48px 39px 23px;
    max-height: calc(100vh - 205px);
}


.weather-info {

    font-weight: bold;
    font-size: 26px;
    line-height: 30px;
    border-bottom: 1px solid #E0E0E0;

    color: #000000;

    display: block;
    padding: 27px 0 38px;
}


.weather__time {

    font-weight: 900;
    font-size: 40px;
    line-height: 47px;
    color: #000000;
}



.weather__date {

    font-weight: normal;
    font-size: 18px;
    line-height: 141.69%;
    color: #828282;

}

/*------------------------------------*\
  #Map
  \*------------------------------------*/
  #map {
    position: absolute;
    left: 107px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100% !important;
    height: 100% !important;
    z-index: 10;
    max-width: 1496px;
}

.app__map {
    z-index: 5;
}

.map-tips,
.map-title,
.map-floor,
.accesable-link,
.map-agenda,
.global-ads-slider {
    z-index: 10;
}

.map-tips {
    z-index: 12;
}

/* Logo items on map */
.shop-logo {
    position: absolute;
    pointer-events: none;
}

.shop-logo__inner {
    width: 80px;
    height: 50px;
    position: absolute;
    left: 50%;
    bottom: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    padding: 5px;
}

.shop-logo__inner:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 10px 0 10px;
    border-color: rgba(255, 255, 255, 0.7) transparent transparent transparent;
    display: inline-block;
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -12px;
}

.shop-logo img {
    width: 70px;
    height: 40px;
    object-fit: contain;
}

[data-id=p53] .shop-logo__inner,
[data-id=p55] .shop-logo__inner,
[data-id=p68] .shop-logo__inner {
    background: none;
    height: auto;
    margin-bottom: 22px;
}

[data-id=p53] .shop-logo__inner:before,
[data-id=p55] .shop-logo__inner:before,
[data-id=p68] .shop-logo__inner:before {
    display: none;
}

[data-id=p53] img,
[data-id=p55] img,
[data-id=p68] img {
    height: auto;
    width: 45px;
    display: block;
    margin: 0 auto;
}

/**/
/* Map tips */
.map-tips {
    position: absolute;
    bottom: 75px;
    right: 393px;
}

.map-tips img {
    margin-right: 15px;
}

.map-tips li {
    float: left;
    position: relative;
    margin-left: 32px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FEC254;
}

.map-tips li strong {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;

    padding-bottom: 8px;
    display: block;
    color: #000000;
}


/* Map title */
.map-title {
    position: absolute;
    left: 430px;
    text-align: left;
    width: 1032px;
    top: 178px;
    color: #333333;
    font-size: 40px;
    display: none;
    text-transform: uppercase;
    font-weight: normal;
}

.map-title div {
    position: relative;
    display: inline-block;
}

/* Map agenda */
.map-agenda {
    position: absolute;
    left: 627px;
    bottom: 34px;
}

.toggle-map-agenda {
    float: left;
}

.map-agenda .title {
    float: left;
    padding-left: 9px;
    padding-top: 10px;
    text-transform: uppercase;
    color: #163447;
    font-size: 12px;
    max-width: 80px;
}

.toggle-map-agenda {
    display: inline-block;
    background: url(../img/icon-info.png) no-repeat left top;
    width: 49px;
    height: 49px;
}

.close-agenda {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    background: url(../img/icon-close.png) no-repeat center center;
    width: 40px;
    height: 40px;
}

.map-agenda__content {
    border: 2px solid #886848;
    padding: 25px;
    padding-bottom: 5px;
    position: absolute;
    background: #fff;
    width: 980px;
    left: 45px;
    bottom: 0px;
    display: none;
}

.map-agenda__content.active {
    display: block;
}

.agenda-items {
    font-size: 12px;
    text-align: center;
}

.agenda-items li {
    display: inline-block;
    margin: 0 3px;
    vertical-align: top;
    max-width: 110px;
}

/* Ad slider */
.global-ads-slider {
    position: absolute;
    right: 60px;
    top: 50%;
    margin-top: -305px;
    width: 200px;
}

.slick-slide {
    padding: 10px 0;
    text-align: center;
}

.ad-slide img {
    vertical-align: top;
    width: auto;
    height: auto;
    width: 100%;
}

.slick-arrow {
    position: absolute;
    left: 0px;
    right: 0px;
    top: auto;
    width: 100%;
    height: auto;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    display: block;
    height: 30px;
}

.slick-arrow:before {
    display: none;
}

.slick-prev,
.slick-prev:hover,
.slick-prev:focus {
    top: -40px;
    background: url(../img/icon-arrow-up.png) no-repeat center center;
}

.slick-next,
.slick-next:hover,
.slick-next:focus {
    bottom: -40px;
    background: url(../img/icon-arrow-down.png) no-repeat center center;
}

/* Local add slider */
.local-ads-slider-wrap {
    position: absolute;
    left: 26px;
    right: 26px;
    top: 190px;
    z-index: 15;
    padding-top: 0px;
    padding-bottom: 45px;
    background: #fff;
    bottom: 0;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.local-ads-slider-wrap.active {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

.local-ads-slider {
    bottom: 0px;
    background: #fff;
}

.local-ad-slide {
    margin: -6px 0;
}

.local-ad-slide>div {
    padding: 6px 0;
}

.local-ad-slide a {
    margin: 0;
    padding: 0px;
    width: 100%;
}

.local-ad-slide a img {
    width: 100%;
    height: auto;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    background: #FEC254;
    width: 36px;
    height: 36px;
    left: 50%;
    margin-left: -18px;
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-next {
    top: -45px;
    background-image: url(../img/arrow-up.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-prev {
    bottom: -45px;
    background-image: url(../img/arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/* */
.discount-switch {
    position: absolute;
    border-radius: 30px;
    background: #E7A781;
    color: #fff;
    width: 280px;
    left: 45px;
    top: 71px;
}

.discount-switch:before {
    display: inline-block;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 25px;
    background: #FEC254;
    width: 50%;
    z-index: 3;
}

.discount-switch.active:before {
    left: 50%;
}

.discount-switch__value {
    line-height: 44px;
    width: 50%;
    float: left;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    z-index: 5;
    position: relative;
}

/* Map floor */
.map-floor {
    position: absolute;
    right: 382px;
    top: 65px;
    display: flex;
}

.map-floor li {
    position: relative;
    margin-bottom: 8px;
}

.map-floor a.active .number {
    background: #FEC254;
    transform: scale(1.4);
}

.map-floor a.active {
  pointer-events: none;
  color: #000000;

}

.map-floor a .number {
    background: #F2F2F2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    font-size: 25px;
    transition: all .3s ease-out;
    margin-right: 25px;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.map-floor a {
  margin-left: 50px;

  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  text-transform: uppercase;
  transition: all .3s ease-out;
  align-items: center;
  height: 72px;
  color: #BDBDBD;

}


/* Map container */
.app__map {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.app__map>img {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* You are here pin */
.you-are-here {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    height: 88px;
    margin-left: 107px;
    width: 88px;
    transform: translateX(-50%) translateY(-100%);
    background: url(../img/you-are-here.svg) no-repeat 4px top;
    background-size: contain;
    z-index: 11;
    margin-top: 12px;
}

.you-are-here__text {
    position: absolute;
    width: 180px;
    text-align: center;
    color: #FEC254;
    font-size: 14px;
    font-weight: 500;
    bottom: -21px;
    left: 50%;
    margin-left: -90px;
}

.pulse {
    background: #FEC254;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 25px 0px 0px -7px;
    transform: rotateX(55deg);
    z-index: -2;
}

.pulse:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    animation: pulsate 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    box-shadow: 0 0 1px 2px #FEC254;
    animation-delay: 1.1s;
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@-o-keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@-moz-keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

@-webkit-keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

@-o-keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

/* Small map popup */
.map-popup__point {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
}

.map__popup.bottom {
    transform: translateY(calc(100% + 53px))
}

.map__popup {
    position: absolute;
    width: 205px;
    left: 50%;
    margin-left: -102px;
    bottom: 24px;
    height: auto;
    border: 0;
    box-shadow: none;
    background: #FEC254;
    z-index: 14;
}

.map-popup__header {
    background: #FEC254;
    color: #fff;
    padding: 17px 10px 11px;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
}

.map__popup .btn-link {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    display: block;
    text-align: center;
    padding: 14px;
    color: #fff;
    text-transform: uppercase;
}

.map__popup .nip {
    position: absolute;
    height: 24px;
    bottom: -24px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 25px 0 25px;
    border-color:#FEC254 transparent transparent transparent;

    margin-left: -25px;
}

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

.submenu__item span[class^=icon] .number-label,
.submenu__item span[class*=" icon"] .number-label {
    display: none;
}

.submenu__item span[class^=icon] i,
.submenu__item span[class*=" icon"] i {
    display: inline-block;
}

.map-popup__controls {
    padding: 4px 26px 5px;
}

.map-popup__controls a.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    width: 100%;
    line-height: 16px;
    text-align: center;

    color: #000000;

    background: #FFFFFF;
    height: 43px;
}


.map__popup.bottom .nip {
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: -24px;
    bottom: auto;
    margin-left: -28px;
}

/*------------------------------------*\
  #App-content
  \*------------------------------------*/
  .app__content {
    position: absolute;
    left: 380px;
    top: 176px;
    right: 0px;
    padding-left: 110px;
    padding-right: 90px;
    padding-top: 23px;
    background: #fff;
    bottom: 0px;
    overflow-y: auto;
    z-index: 30;
}

.app__content-header {
    color: #ff9900;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.app__content-header h1 {
    font-size: 40px;
    color: #2b2b2b;
    margin: 0;
    font-weight: normal;
}

.app__content-middle h2 {
    color: #886848;
    font-size: 36px;
    margin: 0;
    font-weight: normal;
    margin-bottom: 15px;
}


/*------------------------------------*\
  #News-list
  \*------------------------------------*/
  .news-list {
    margin: 0 -35px;
}

.news-item {
    width: 33.3333%;
    float: left;
    padding: 0 35px;
    margin-bottom: 50px;
}

.news-item:nth-child(3n+1) {
    clear: left;
}

.news-item img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.news__name {
    font-size: 19px;
    color: #363636;
    text-transform: uppercase;
}

.news__date {
    font-size: 16px;
    color: #e21b46;
}

/*------------------------------------*\
  #Popups
  \*------------------------------------*/
  .app-cover {
    position: fixed;
    z-index: 30;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0;
    pointer-events: none;
}

.popup-default {
    position: fixed;
    left: 665px;
    top: 80px;
    z-index: 35;
    background: #fff;
    width: 594px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.popup-default__content {
    padding: 0px;
}


.popup__close {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    right: 8px;
    top: 8px;
    z-index: 100;
}

.popup-content {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup-content hr {
    margin: 15px 0;
    border: 0;
    width: 100%;
    color: #acc836;
    background-color: #acc836;
    height: 2px;
}

.popup-content img {
    width: auto;
    max-width: 270px;
    height: auto;
}



.popup__title {
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    padding: 25px 18px;
    padding-right: 40px;
}

.popup__title strong {
    color: #FEC254;
}

.popup__subtitle {
    font-size: 16px;
}

.popup__subtitle a {
    text-decoration: underline;
    color: #1e7773;
}

.popup__media img {
    width: 100%;
    height: auto;
}

.popup__details {
    padding: 22px 24px;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.popup__details .btn-primary {
    line-height: 28px;
    width: 208px;
    border-radius: 26px;
    text-align: center;
    margin-top: 44px;
}

/* Discount slider in ppopup */
.show-back-location {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50px;
    height: 54px;
    background: url(../img/arrow-back.svg) no-repeat center center;
    z-index: 15;
    display: none;
}

.small-discount-slider {
    width: 250px;
    height: 290px;
    overflow: hidden;
    padding-top: 40px;
}

.small-discount-slider .owl-dots {
    position: absolute;
    background: #FEC254;
    left: 0;
    top: 0;
    right: 0;
    padding-bottom: 12px;
    padding-top: 18px;
    padding-right: 12px;
    padding-left: 12px;
    text-align: right;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.owl-theme .owl-dots .owl-dot span {
    background: #fff;
}

/*------------------------------------*\
  #Intro cover
  \*------------------------------------*/
  .intro-cover {
    position: absolute;
    left: 2000px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.intro-cover:before {
    left: -107px;
    width: 80px;
    display: inline-block;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
}

.intro-cover:after {
    display: inline-block;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.5;
}

.intro-visible .intro-cover {
    left: 107px;
}

.intro-slide img {
    vertical-align: top;
    width: auto;
    height: auto;
    max-width: 1080px;
    margin: 0 auto;
}

/*------------------------------------*\
  #Shop popup
  \*------------------------------------*/

  body:not(.shop-details-state) .popup-shop {
    display: none!important;
}
.popup-shop {
    z-index: 70;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    top: 0;
    bottom: 0;
    overflow: auto;
    padding-bottom: 100px;
    left: 0;
    margin: 0 317px;

    background: #F2F2F2;
    box-shadow: none;
    width: auto;
    right: 0;
}
.btn-back {
    background: url(../img/back.svg) no-repeat 0 50%;
    padding-left: 32px;
    display: block;
    font-weight: bold;
    font-size: 23px;
    line-height: 27px;
}
.popup-shop .close {
    padding-bottom: 65px;
}
.popup-shop h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 30px;
    text-transform: uppercase;

    margin: 0;
    padding: 0 0 34px;

    color: #000000;

}
.popup-shop .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.popup-shop .show-path-link {
    background: #FEC254 url(../img/right.svg) no-repeat right 24px center;
    height: 62px;
    font-weight: bold;
    font-size: 23px;
    line-height: 27px;
    text-align: center;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    padding-right: 62px;

    color: #FFFFFF;
}
.popup-shop .text {
    width: 415px;
    margin-left: 52px;
}
.icon-row a {
    color: inherit;
}
.icon-row img {
    margin-right: 21px;
}
.icon-row {

    border-bottom: 1px solid #E0E0E0;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.popup-shop .desc {
    padding-top: 30px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}
.popup-shop .image {
    width: 370px;
}
.popup-shop .img-h {
    width: 370px;
    margin-bottom: 34px;
    height: 369px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #ECECEC;

}
.popup-shop .shop-box {
    padding: 49px 0 51px 53px;
    display: flex;
    flex-wrap: wrap;
    background: #FFFFFF;
}
.popup-shop h2 {
    font-weight: bold;
    padding: 0;
    font-size: 46px;
    line-height: 54px;
    margin: 76px 0;
}
.container {
    width: 930px;
    margin: auto;
}
.shop-header {
    position: relative;
    min-height: 80px;
}

.shop-header img {
    border: 1px solid #cdb9aa;
}

.shop-info {
    font-size: 21px;
    color: #333333;
}

.shop-info strong {
    font-weight: 300;
}

/* Detailed shop gallery */
.shop-gallery {
    height: 534px;
    overflow: hidden;
    position: relative;
}

.slick-slider.shop-gallery {
    margin-bottom: 0px;
}

.shop-gallery:before {
    display: block;
    position: absolute;
    content: "";
    pointer-events: none;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 1;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+50,000000+90,000000+100&0.55+0,0+50,0.1+90,0.8+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.8) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.8) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0.8) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8c000000", endColorstr="#cc000000", GradientType=0);
    /* IE6-9 */
}

.shop-gallery img {
    max-width: unset;
    width: 100%;
    height: auto;
}

.shop-gallery .slick-slide {
    padding: 0;
}

.shop-gallery__item {
    height: 534px;
    width: 100%;
}

.shop-gallery__photo {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 534px;
    width: 100%;
}

.shop-gallery .slick-arrow {
    display: none;
}

.shop-gallery .slick-dots {
    position: absolute;
    left: 0px;
    counter-reset: section;
    right: 0px;
    bottom: 15px;
    z-index: 10;
}

.discount-list .slick-dots li button:before {
    display: none;
}

.slick-dots {
    font-size: 0;
    position: static;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    padding-top: 107px;
    vertical-align: top;
}

.discount-list .slick-dots li button {
    width: 43px;
    border-radius: 50%;
    height:43px;
    margin: 10px;
    font-family: Roboto;
    position: relative;
    box-shadow: none;
    text-align: center;
    line-height: 43px;
    font-weight: 500;
    padding: 0;
    font-size: 22px;
    color: #000000;
    background: #FFFFFF;
}

.discount-list .slick-dots .slick-active button {
    background: #FEC254;
    color: #fff;
}

.shop-header .shop__logo {
    position: absolute;
    right: 132px;
    top: 0;
    z-index: 5;
    background: #fff;
}

.shop-header .shop__logo img {
    vertical-align: top;
    border: none;
}

.shop-header .popup__title {
    position: absolute;
    left: 150px;
    top: 25px;
    right: 360px;
    color: #fff;
    z-index: 5;
    text-transform: uppercase;
}

/* Small discount list */
.discounts-list-small {
    margin: 0 -30px;
    margin-top: 25px;
}

.discounts-list-small>div {
    float: left;
    width: 50%;
    padding: 0 30px;
    margin-bottom: 30px;
}

.discounts-list-small>div:nth-child(2n+1) {
    clear: left;
}

.discounts-list-small>div:nth-last-child(1),
.discounts-list-small>div:nth-last-child(2) {
    margin-bottom: 0;
}

.discounts-list-small a {
    display: block;
}

.discounts-list-small img {
    width: 100%;
    height: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}

/*------------------------------------*\
  #Simple-content
  \*------------------------------------*/
  .simple-content {
    font-size: 13px;
    line-height: 15px;
    font-weight: normal;
    color: #4F4F4F;
}

.simple-content a {
    pointer-events: none;
}

.simple-content p {
    color: #6b5f53;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
}

.simple-content table td {
    padding-right: 30px;
}

/*------------------------------------*\
  #Keyboard
  \*------------------------------------*/
  .keyboard-numbers,
  .keyboard {
width: 1128px;
display: none;
height: 452px;
left: 475px;
padding: 45px 102px 0;
top: 628px;
    z-index: 9999;
position: absolute;
background: #FFFFFF;
box-shadow: 0px 0px 50px #EAEAEA;
}

.keyline {
    display: inline-block;
    width: 100%;
}
  .keyboard .popup__close {
    top: 43px;
    right: 103px;
    text-align: center;
    width: 60px;
  }


.keyline:nth-child(5) {
    text-align: center;
}


.close-keyboard {
    display: none;
}

.keyboard-key {
background: #646464;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
border-radius: 9px;
display: inline-flex;
align-items: center;

vertical-align: top;
font-size: 22px;
line-height: 26px;
text-align: left;
padding-left: 6px;
position: relative;
user-select: none;
letter-spacing: -0.02em;
color: #FFFFFF;
padding-right: 10px;
text-transform: uppercase;
height: 43px;
width: 53px;
margin: 2px 4px;
}

.keyboard-key:empty {
    pointer-events: none;
}
.keyboard-key:empty:first-child {
    width: 70px;
    opacity: 1;
}

.keyline:nth-child(1) .keyboard-key:nth-child(14) {
background: #3F3F3F;
text-align: right;
text-transform: none;
justify-content: flex-end;
width: 105px;
}

.keyline:nth-child(2) .keyboard-key:nth-child(14) {
    width: 69px;
    opacity: 1;
}
.keyline:nth-child(3) .keyboard-key:nth-child(13) {
    width: 117px;
    opacity: 1;
    pointer-events: none;
    color: transparent;
background: #3F3F3F;
}

.keyline:nth-child(4) .keyboard-key:nth-child(12) {
    width: 143px;
    opacity: 1;
    pointer-events: none;
    color: transparent;
background: #3F3F3F;
}

.keyline:nth-child(2) .keyboard-key:nth-child(1) {
background: #3F3F3F;
width: 106px;
color: transparent;
pointer-events: none;
}
.keyline:nth-child(3) .keyboard-key:nth-child(1) {
background: #3F3F3F;
width: 119px;
color: transparent;
pointer-events: none;
}
.keyline:nth-child(4) .keyboard-key:nth-child(1) {
background: #3F3F3F;
width: 154px;
color: transparent;
pointer-events: none;
}
.keyline:nth-child(5) .keyboard-key:nth-child(2) ,
.keyline:nth-child(5) .keyboard-key:nth-child(1) {
background: #3F3F3F;
width:61px;
color: transparent;
pointer-events: none;
}
.keyline:nth-child(5) .keyboard-key:nth-child(3) {
    width: 620px;
color: transparent;
}
.keyline:nth-child(5) .keyboard-key:nth-child(4):before {
    content: '.?123';
    color: #fff;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;justify-content: center;
    right: 0;
    white-space: nowrap;
    text-align: center;
}
.keyline:nth-child(5) .keyboard-key:nth-child(4) {
width: 82px;
background: #3F3F3F;
    color: transparent;
}

.keyline:nth-child(5) .keyboard-key:nth-child(5) {
width: 60px;
pointer-events: none;
background: #3F3F3F;
    color: transparent;
}

.keyboard-key:active {
    background: #606060;
}

/* Searchbar */
.searchbar {
background: #F2F2F2;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
border-radius: 9px;
font-weight: normal;
font-size: 22px;
line-height: 66px;
height: 66px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 20px;
padding-left: 41px;
text-align: left;
width: 825px;
margin-bottom: 44px;
letter-spacing: -0.02em;

color: #000000;

}

.exit-search {
    position: absolute;
    width: 32px;
    text-align: center;
    right: 0px;
    top: 0px;
    font-size: 20px;
    line-height: 34px;
    font-size: 28px;
}

/*------------------------------------*\
  #Trafi
  \*------------------------------------*/
  .popup-trafi .popup__title {
    margin-bottom: 20px;
}

.trafi-bus {
    margin-bottom: 15px;
    padding-left: 78px;
    min-height: 64px;
    position: relative;
}

.trafi-bus .bus-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #006fa8;
}

.trafi-bus .bus-icon img {
    vertical-align: top;
}

.trafi-bus-info {
    line-height: 1.2em;
}

.bus-time-left {
    font-weight: bold;
    margin-bottom: 5px;
}

/*------------------------------------*\
  #Check card info
  \*------------------------------------*/
  .check-card__title {
    padding: 6px 12px;
    color: #fff;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
    background: #acc836;
    width: 640px;
    position: relative;
    margin-top: -12px;
}

.check-card__title--card:after {
    display: inline-block;
    position: absolute;
    content: "";
    right: -125px;
    top: -57px;
    width: 305px;
    height: 228px;
    background: url(../img/card.png) no-repeat left top;
}

/**/
.check-card__form {
    margin-top: 26px;
    margin-bottom: 85px;
}

.check-card__form .form-row {
    margin-bottom: 0px;
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 17px;
}

.check-card__form label {
    display: block;
    color: #333;
    font-size: 21px;
    padding-bottom: 18px;
    font-weight: normal;
}

.check-card__form input[type=text],
.check-card__form input[type=number] {
    width: 410px;
    height: 44px;
    border: 1px solid #ebeaea;
    padding: 8px 12px;
    font-size: 18px;
}

.check-card__form .input-explainer {
    margin: 0;
    color: #333;
    font-size: 18px;
    margin-top: 15px;
    font-weight: normal;
}

.check-card__submit {
    background: #e21b46;
    color: #fff;
    padding: 8px 20px;
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
}

/**/
.check-card__results-wrapper {
    margin-top: 45px;
    margin-bottom: 75px;
}

.check-card__results {
    width: 80%;
}

.check-card__results td {
    padding: 8px 0;
    padding-right: 20px;
    font-size: 22px;
    font-weight: 300;
}

.check-card__results td strong {
    font-weight: 600;
}

/*------------------------------------*\
  #Language dependent styles
  \*------------------------------------*/
  /* LT */
  /* EN */
  .en .map-tips {
    font-size: 14px;
}

.en .accesable-link {
    width: 165px;
}

.en .accesable-link .title {
    width: 115px;
    padding-top: 0px;
    margin-top: 5px;
}



/* RU */
.ru .map-tips {
    font-size: 13px;
}

.ru .map-tips li strong {
    font-size: 14px;
}

.ru .accesable-link {
    width: 165px;
}

.ru .accesable-link .title {
    width: 115px;
    padding-top: 0px;
    margin-top: -4px;
}



/*------------------------------------*\
  #Disabled mode
  \*------------------------------------*/
  .toggle-disabled-mode {
    display: inline-block;
    position: absolute;
    right: 45px;
    bottom: 50px;
    z-index: 50;
    text-align: center;
    width: 120px;
}

.toggle-disabled-mode span {
    display: block;
    border-radius: 100%;
    box-shadow: 4px 8px 15px rgba(95, 95, 95, 0.4);
    width: 68px;
    height: 68px;
    position: relative;
    margin-bottom: 5px;
    background: #fff;
    margin: 0 auto;
    margin-bottom: 12px;
}

.toggle-disabled-mode span img {
    position: absolute;
    left: 19px;
    top: 15px;
}

.dissabled-mode .accesable-link {
    background: #e21b46;
    box-shadow: 0 0 0 4px #e21b46;
    left: 55px;
}

.dissabled-mode .accesable-link .title {
    color: #fff;
}

.dissabled-mode .toggle-map-tips {
    left: 200px;
    position: fixed;
    bottom: 40px;
}

.dissabled-mode .map-tips {
    bottom: 96px;
    left: 205px;
}

.dissabled-mode .app__sidebar {
    top: 280px;
    bottom: 175px;
}

.dissabled-mode .main-menu {
    padding-bottom: 0px;
}

.dissabled-mode .main-menu>li>.menu-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.dissabled-mode .main-menu-container {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 426px;
}

.dissabled-mode .app__content {
    padding-top: 20px;
    padding-bottom: 0;
    bottom: 176px;
    top: 90px;
}

.dissabled-mode .popup-default {
    top: 0px;
    bottom: 176px;
}

.loading-screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 99999;
    text-transform: uppercase;
    font-size: 32px;
}

.loading-text {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #663300;
    margin-top: -55px;
}

.loaders {
    margin-bottom: 30px;
}

.loaders span {
    display: inline-block;
    height: 15px;
    width: 15px;
    background: #663300;
    border-radius: 50%;
    margin: 6px;
    animation: loader 1.6s;
    animation-iteration-count: infinite;
}

.loaders span:nth-child(1) {
    animation-delay: 0.2s;
}

.loaders span:nth-child(2) {
    animation-delay: 0.4s;
}

.loaders span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes loader {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ------ Page Footer styles ------ */

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



body:not(.show-all-workh-state) .popup-workh {
    display: none!important;
}

.right-side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 317px;
    background: #fff;
    z-index: 999;
    margin-left: auto;
    right: 0;
}

body:not(.show-all-news-state) .popup-news {
    display: none!important;
}

body:not(.show-all-events-state) .popup-events {
    display: none!important;
}

body:not(.show-all-discounts-state) .popup-discounts:not(.popup-events):not(.popup-news) {
    display: none!important;
}

body:not(.discount-details-state) .popup-discount {
    display: none!important;
}
.slick-track:after,
.slick-track:before {
    display: none;
}
.slick-track {
    display: flex;
}

.popup-workh h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 46px;
    line-height: 54px;
    color: #000000;
    margin: 0 0 75px;
}
.popup-workh {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding-bottom: 76px;
    padding-top: 76px;
    overflow-y: auto;
    margin: 0 317px;
    background: #F2F2F2;
}
.workh-list .hours {

font-weight: bold;
font-size: 22px;
line-height: 30px;
/* identical to box height, or 136% */

text-align: center;

/* Black */

color: #000000;

padding-bottom: 28px;
}
.workh-list .name {
    text-align: center;
font-weight: bold;
font-size: 15px;
line-height: 18px;
margin: 27px 0 10px;
color: #FEC254;

}
.workh-list .image {

    margin: -20px -20px 20px;
}
.workh-list .image img {
    height: 158px;
    width: 100%;
    object-fit: contain;
}
.workh-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -19px;
}
.workh-list .work-item {
    width: 297px;
    margin-bottom: 20px;
    padding: 20px;

background: #FFFFFF;
margin-right: 19px;
}
.popup-discounts h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 46px;
    line-height: 54px;
    color: #000000;
    margin: 0 0 75px;
}
.popup-discounts {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding-top: 76px;
    margin: 0 317px;
    background: #F2F2F2;
}
.popup-discounts .event-details a.btn-link {
    color: #FEC254
}
.popup-discounts .event-details .center {
    margin-top: auto;
}
.popup-discounts .event-details .date,
.popup-discounts .event-details .desc,
.popup-discounts .event-details .title {
    text-align: left;
}
.popup-discounts .event-details {
    background: #fff;
    width: 297px;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-right: 19px;
    margin-bottom: 20px;
}

.event-details .image img {
    max-width: 100%;
}

.event-details .title {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 25px;

}
.event-details .btn-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    display: block;
    color: #4F4F4F;

    padding: 20px;
}
.event-details .center {
    text-align: center;
}
.event-details .btn-primary {
    display: block;
    width: 100%;
    height: 45px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 45px;
    text-align: center;
    padding: 0;

    color: #FFFFFF;

    border-radius: 0;
}
.event-details .desc {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 40px;

}
.event-details .date {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 30px;
    color: #000000;

}

.event-details .image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 194px;
    margin: 0 -20px 30px;
    padding: 0;
}

.popup-discount .popup__close img {
    display: block;
    margin: 0 auto;
}

.submenu__item .shops-menu ul {
    width: 100%;
}

.popup-discount .popup__close {
    position: static;
    display: block;
    text-align: center;
    font-weight: normal;
    width: auto;
    background: none;
    font-size: 15px;
    line-height: 141.69%;

    color: #828282;
    height: auto;

    padding: 39px 0 33px;
}

.popup-discount {
    position: absolute;
    top: 0;
    right: 317px;
    z-index: 99;
    padding: 20px;
    background: #fff;
    width: 336px;
    border-right: 1px solid #E0E0E0;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}



.active-path .map-tips li:first-child{
    display: none;
}