@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
@import url("https://use.typekit.net/umo6jlk.css");
* {
  scroll-margin-top: 80px;
  scrollbar-color: #01afd3 #1d2231;
  scrollbar-width: thin;
}

::-moz-selection {
  background: #01afd3;
  color: #1d2231;
}

::selection {
  background: #01afd3;
  color: #1d2231;
}

html,
body {
  height: 100%;
  width: 100%;
  font: normal 400 16px "Lato", sans-serif;
  color: #1d2231;
}

body {
  margin: 0;
  overflow-x: hidden;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

@media screen and (min-width: 3000px) {
  body {
    zoom: 166.6666666667%;
  }
}
/* ------ */
p {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
p a {
  text-decoration: underline;
  color: inherit;
}
p a:hover {
  text-decoration: none;
}

main p a {
  font-weight: 600;
}

/* ------ */
hr {
  border: 0;
  background: #000;
  display: block;
  height: 1px;
  margin: 20px 0;
}

/* ------ */
a, a:hover, a:focus,
button, button:hover, button:focus,
input[type=submit], input[type=submit]:hover, input[type=submit]:focus {
  text-decoration: none;
  -webkit-transition: outline 0s;
  transition: outline 0s;
}

a, [type=submit] {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

a {
  color: #005b82;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #005b82;
}
a:focus {
  outline: 3px solid #2DBCD8 !important;
  outline-offset: 4px;
  -webkit-transition: outline 0s;
  transition: outline 0s;
}

a.link:hover {
  color: #005b82;
}

b, strong {
  font-weight: 600;
}

/* ------ */
/* HEADINGS */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  font-weight: 600;
}

h1, .h1 {
  margin-bottom: 1rem;
  font-size: 46px;
  font-size: 2.875rem;
}

h2, .h2 {
  margin-bottom: 1rem;
  font-size: 30px;
  font-size: 1.875rem;
}

h3, .h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 1024px) {
  h1, .h1,
  h2, .h2 {
    margin-bottom: 2.5rem;
  }
  h3, .h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1600px) {
  h1, .h1 {
    font-size: 62px;
    font-size: 3.875rem;
  }
  h2, .h2 {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
/* ------ */
/* BOOTSTRAP GRID */
.container {
  max-width: none;
  padding: 0;
  position: relative;
}

/* ------ */
/* FORM ELEMENTS */
.form-control {
  border-radius: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 0;
  min-height: 50px;
  padding: 10px 15px;
  outline: none !important;
  font-weight: 600;
}
.form-control::-webkit-input-placeholder {
  color: #1d2231;
}
.form-control::-moz-placeholder {
  color: #1d2231;
}
.form-control:-ms-input-placeholder {
  color: #1d2231;
}
.form-control::-ms-input-placeholder {
  color: #1d2231;
}
.form-control::placeholder {
  color: #1d2231;
}

.btn {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0;
  border: 0;
  padding: 10px 15px;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.btn:focus, .btn:hover, .btn.active {
  background: #000;
  color: #FFF;
}

.btn-default {
  background: #005b82;
  text-shadow: 0 0 1px #1d2231;
  color: #FFF;
}

.btn-white {
  border-color: #FFF;
  color: #FFF;
}
.btn-white:hover {
  background: #FFF;
  color: #000;
}

.btn-more {
  background: #005b82;
  padding: 0.16rem 0.785rem;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.33px;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  color: inherit;
  position: relative;
}
.btn-more:before {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.btn-more.arrow-left {
  margin-left: 7px;
  padding-left: 0.4rem;
  padding-right: 0.6rem;
}
.btn-more.arrow-left:before {
  content: "";
  border-right: 7px solid #005b82;
  left: -7px;
}
.btn-more.arrow-right {
  margin-right: 7px;
  padding-left: 0.6rem;
  padding-right: 0.4rem;
}
.btn-more.arrow-right:before {
  content: "";
  border-left: 7px solid #005b82;
  right: -7px;
}
.btn-more:focus {
  background: #000;
  color: #005b82;
}
.btn-more:hover {
  background: #000;
}
.btn-more:hover.arrow-left:before {
  border-right-color: #000;
}
.btn-more:hover.arrow-right:before {
  border-left-color: #000;
}

.btn-sm {
  min-height: auto !important;
  padding: 0.25rem 0.75rem;
}

@media screen and (min-width: 1024px) {
  .btn {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* ------ */
/* custom checkbox */
.ccheck {
  display: inline;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Show the checkmark when checked */
  /* checkmark */
}
.ccheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ccheck:hover input ~ .checkmark {
  border-color: #005b82;
}
.ccheck:hover input ~ .checkmark:after {
  border-color: #005b82;
  display: block;
}
.ccheck input:checked ~ .checkmark:after {
  display: block;
}
.ccheck .checkmark {
  border-radius: 50%;
  border: 1px solid #FFF;
  background-color: none;
  height: 22px;
  width: 22px;
  position: absolute;
  top: -1px;
  left: 0;
  /* Create the checkmark/indicator (hidden when not checked) */
}
.ccheck .checkmark:after {
  content: "";
  border: solid #FFF;
  border-width: 0 1px 1px 0;
  width: 6px;
  height: 13px;
  position: absolute;
  top: 2px;
  left: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: none;
}

/* ------ */
/* MENU - TOGGLE */
#menu-toggle {
  width: 40px;
  height: 40px;
  padding: 7px;
  position: absolute;
  top: 16px;
  right: 10px;
  z-index: 9;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}
#menu-toggle .nav-icon {
  position: relative;
}
#menu-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #1d2231;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#menu-toggle span:nth-child(1) {
  top: 0;
}
#menu-toggle.open span:nth-child(1), #menu-toggle.open span:nth-child(4),
#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
  top: 10px;
}
#menu-toggle span:nth-child(4) {
  top: 20px;
}
#menu-toggle.open span:nth-child(1), #menu-toggle.open span:nth-child(4) {
  width: 0%;
  left: 50%;
}
#menu-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  #menu-toggle {
    display: none;
  }
}

/* ------ */
/* NAVBAR */
#navbar {
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.15);
  background: #FFF;
  width: 100%;
  height: 66px;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#navbar:before, #navbar:after {
  content: "";
  border-left: 109px solid transparent;
  border-right: 253px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: -73px;
  z-index: -1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#navbar:before {
  border-top: 50px solid #C2EBF3;
}
#navbar:after {
  border-top: 31px solid #FFF;
}
#navbar .logo {
  width: 110px;
  display: inline-block;
  position: relative;
  top: 10px;
  z-index: 2;
}
#navbar .logo img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#navbar .menu-bar {
  width: 100%;
  height: 66px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#navbar .search-container {
  display: block;
  padding: 0;
  position: relative;
}
#navbar .search-container .form-control {
  background: #0095d6 url("../img/icons/search.svg") calc(100% - 15px) 50% no-repeat;
  background-size: 17px;
  width: 100%;
  height: 50px;
  min-height: 50px;
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #FFF;
  z-index: 1;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  cursor: pointer;
}
#navbar .search-container .form-control::-webkit-input-placeholder {
  color: #FFF;
}
#navbar .search-container .form-control::-moz-placeholder {
  color: #FFF;
}
#navbar .search-container .form-control:-ms-input-placeholder {
  color: #FFF;
}
#navbar .search-container .form-control::-ms-input-placeholder {
  color: #FFF;
}
#navbar .search-container .form-control::placeholder {
  color: #FFF;
}
#navbar .search-container .form-control + div {
  background: #FFF;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#navbar .search-container .form-control:focus {
  border-color: #f8f8f8;
  text-indent: 0;
}
#navbar .search-container .form-control:focus + div {
  opacity: 1;
  visibility: visible;
}
#navbar .navbar-top {
  padding-right: 95px;
  font-weight: 600;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #005b82;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#navbar .navbar-top > span {
  margin-left: 28px;
}
#navbar .navbar-top .opening {
  display: block;
  padding-top: 18px;
  text-align: right;
}
#navbar .navbar-top .opening span {
  display: block;
}
#navbar .navbar-top .opening .spacer {
  margin: 0 5px;
  display: none;
}
#navbar .navbar-top .howto {
  display: none;
}
#navbar .navbar-top .languages {
  position: absolute;
  top: 20px;
  right: 55px;
}
#navbar .navbar-top .languages .active {
  display: none;
}
#navbar .navbar-top .languages a span {
  display: none;
}
#navbar .navbar-top .languages a span:first-child {
  border-radius: 50%;
  border: 1px solid #005b82;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#navbar .navbar-top a:focus, #navbar .navbar-top a:hover {
  color: #1d2231;
}
#navbar .navbar-top img {
  display: none;
}
#navbar.fixed:before, #navbar.fixed:after {
  border-top-width: 0 !important;
}
#navbar.fixed .logo {
  width: 125px;
}
@media screen and (min-width: 400px) {
  #navbar .logo {
    width: 125px;
  }
}
@media screen and (min-width: 667px) {
  #navbar .menu-bar {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  #navbar {
    height: 98px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #navbar:before, #navbar:after {
    border-left-width: 154px;
    border-right-width: 403px;
    border-top-width: 43px;
    left: 0;
  }
  #navbar:before {
    border-top: 69px solid #C2EBF3;
  }
  #navbar .logo {
    width: 175px;
    top: 5px;
  }
  #navbar .menu-bar {
    width: auto;
    height: auto;
    position: relative;
  }
  #navbar .navbar-top {
    width: 85vw;
    padding: 0;
    text-align: right;
    top: 9px;
  }
  #navbar .navbar-top > span,
  #navbar .navbar-top .howto {
    display: inline-block;
  }
  #navbar .navbar-top .opening {
    display: inline-block;
    padding: 0;
  }
  #navbar .navbar-top .opening span,
  #navbar .navbar-top .opening .spacer {
    display: inline-block;
  }
  #navbar .navbar-top .languages {
    display: inline-block;
    position: static;
  }
  #navbar .navbar-top .languages a span {
    display: inline-block;
  }
  #navbar .navbar-top .languages a span:first-child {
    display: none;
  }
  #navbar .navbar-top img {
    display: inline-block;
    margin: -2px 6px 0 0;
  }
  #navbar .search-bar {
    display: none;
  }
  #navbar .search-container {
    background: none;
    display: inline-block;
    width: 50px;
  }
  #navbar .search-container .form-control {
    border-radius: 50px;
    background-position: calc(100% - 7px) 50%;
    width: 31px;
    height: 31px;
    min-height: 31px;
    text-indent: -999em;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #navbar .search-container .form-control:focus {
    width: 265px;
  }
  #navbar.fixed {
    height: 80px;
  }
  #navbar.fixed .navbar-top {
    top: 12px;
  }
  #navbar.fixed #main-menu {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1180px) {
  #navbar {
    padding: 0 60px;
  }
  #navbar .logo {
    width: 203px;
  }
  #navbar .search-container .form-control div {
    width: 1050px;
  }
}
@media screen and (min-width: 1600px) {
  #navbar {
    padding: 0 135px;
  }
  #navbar .search-container .form-control div {
    width: 1300px;
  }
}

/* ------ */
/* MAIN MENU */
#main-menu {
  border-top: 1px solid #f8f8f8;
  background: #FFF;
  width: 100%;
  max-height: calc(100vh - 66px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: #000;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: auto;
}
.open #main-menu {
  opacity: 1;
  visibility: visible;
}
#main-menu > li {
  border-bottom: 1px solid #f8f8f8;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#main-menu > li > a {
  text-transform: uppercase;
}
#main-menu > li:hover .sub-menu {
  display: block;
}
#main-menu li.search-container {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#main-menu a {
  padding: 11px 15px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  -webkit-transition: none;
  transition: none;
  word-break: normal;
}
@media screen and (min-width: 1024px) {
  #main-menu {
    border: 0;
    background: none;
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 29px 0 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: static;
    overflow: visible;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    opacity: 1;
    visibility: visible;
  }
  #main-menu > li {
    border: none;
    width: auto;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 8px;
    position: relative;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  #main-menu > li a {
    display: block;
    min-height: 44px;
    padding-left: 0;
    padding-right: 0;
  }
  #main-menu li.search-container {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
@media screen and (min-width: 1200px) {
  #main-menu > li {
    padding: 0 25px;
  }
}
@media screen and (min-width: 1600px) {
  #main-menu > li {
    padding: 0 17px;
  }
}

/* ------ */
/* HEADER */
#header {
  position: relative;
  overflow: hidden;
}
#header:before {
  content: "";
  background: #1d2231;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#header:after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(45%, transparent), color-stop(72%, rgba(29, 34, 49, 0.85)), to(rgba(29, 34, 49, 0.85)));
  background: linear-gradient(to top, transparent 0%, transparent 45%, rgba(29, 34, 49, 0.85) 72%, rgba(29, 34, 49, 0.85) 100%);
  width: 100%;
  height: 300px;
  position: absolute;
  top: 100vh;
  left: 0;
  z-index: 1;
}
#header .skip-links:focus-within {
  top: 98px;
  left: 50px;
}
.sp #header:before, .sp #header:after {
  display: none;
}
@media screen and (min-width: 1024px) {
  #header:before, #header:after {
    display: none;
  }
}

/* ------ */
/* HOME - HEADER */
#home {
  margin-top: 66px;
  padding: 0 20px;
  display: block;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
#home:before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(76%, rgba(29, 34, 49, 0.95)), to(#1d2231));
  background: linear-gradient(to bottom, transparent 0%, rgba(29, 34, 49, 0.95) 76%, #1d2231 100%);
  width: 100%;
  height: 70vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#home:after {
  content: "";
  background: rgba(29, 34, 49, 0.88);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 70vh;
  left: 0;
  z-index: 0;
}
#home .container {
  max-width: 1340px;
  position: relative;
  z-index: 1;
}
#home .container > .row {
  width: 100%;
  height: 100%;
}
#home .container > .row > .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#home .left {
  padding: 254px 0 34px;
}
#home h1 {
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFF;
}
#home .claim {
  display: block;
  margin-bottom: 34px;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
  color: #FFF;
}
#home .btn {
  min-width: 171px;
  padding: 16px 15px;
}
#home .btn:focus {
  outline-offset: 4px;
}
#home .news {
  width: 100%;
  padding: 0 0 34px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1;
}
#home .news .row {
  width: 100%;
  margin: 0;
}
#home .news .col {
  padding: 0;
}
#home .news a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  color: #FFF;
}
#home .news span:not(.thumb) {
  max-width: 150px;
  margin: auto;
  display: block;
}
#home .news a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
#home .thumb {
  border-radius: 50%;
  border: 10px solid transparent;
  background: rgba(255, 255, 255, 0.2);
  width: 179px;
  max-width: none;
  margin: 0 auto 14px;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#home .thumb:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#home .thumb img {
  background: #FFF;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#home .header-img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 66px);
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hp #home {
  background: #1d2231;
}
.hp #home h1, .hp #home .claim, .hp #home .breadcrumb {
  text-shadow: 0 0 10px #000;
}
.sp #home {
  padding-top: 30px;
}
.sp #home:before {
  display: none;
}
.sp #home h1 {
  display: none;
  color: #1d2231;
}
.store #home .left {
  padding-bottom: 28px;
}
.store #home .claim {
  margin: 0;
}
.store #home .thumb {
  margin: 0;
  position: absolute;
  bottom: 30px;
  right: 15px;
  display: none;
}
.store #home .breadcrumb {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: none;
  color: #FFF;
}
@media screen and (min-width: 568px) and (orientation: landscape) {
  #home .left {
    padding-top: 175px;
  }
}
@media screen and (min-width: 600px) {
  #home .news {
    display: block;
    padding-bottom: 50px;
  }
  #home .news a {
    display: block;
    text-align: center;
  }
  #home .thumb {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .sp #home {
    padding: 30px 40px 0;
  }
  .store #home .claim {
    margin-bottom: 15px;
  }
  .store #home .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .store #home .thumb {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  #home {
    margin-top: 98px;
    padding: 0;
  }
  .store #home {
    background: #1d2231;
    min-height: 350px;
  }
  #home:before {
    height: 100%;
  }
  #home:after {
    display: none;
  }
  #home .container {
    padding: 0 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #home .container > .row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #home .left {
    width: auto;
    padding: 0 0 85px;
  }
  #home h1 {
    margin-bottom: 8px;
  }
  #home .claim {
    margin-bottom: 35px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  #home .news {
    width: 55%;
  }
  #home .thumb {
    max-width: 150px;
    width: auto;
  }
  #home .header-img {
    position: static;
  }
  .sp #home {
    padding-top: 50px;
  }
  .sp #home h1 {
    display: block;
    margin-bottom: 24px;
    text-align: center;
  }
  .store #home .row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .store #home .left {
    padding-bottom: 51px;
  }
  .store #home h1 {
    margin-bottom: 10px;
  }
  .store #home .claim {
    margin-bottom: 56px;
  }
  .store #home .thumb {
    max-width: none;
    width: 195px;
    height: 195px;
    position: relative;
    bottom: 55px;
    right: 0;
  }
}
@media screen and (min-width: 1180px) {
  #home .news {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  #home:before {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(76%, rgba(29, 34, 49, 0.95)), to(#1d2231));
    background: linear-gradient(to bottom, transparent 0%, rgba(29, 34, 49, 0.95) 76%, #1d2231 100%);
  }
  #home .news {
    width: 693px;
  }
  #home .news .col {
    padding-left: 26px;
  }
  #home .thumb {
    max-width: 214px;
  }
  .store #home .thumb {
    width: 215px;
    height: 215px;
  }
}
@media screen and (min-width: 1600px) {
  #home .container {
    padding: 0;
  }
  #home .header-img {
    max-height: 719px;
    -o-object-position: center 80%;
       object-position: center 80%;
  }
  .store-2 #home .header-img, .store-3 #home .header-img, .store-5 #home .header-img, .store-11 #home .header-img, .store-13 #home .header-img, .store-15 #home .header-img, .store-16 #home .header-img, .store-17 #home .header-img, .store-25 #home .header-img {
    -o-object-position: center 50%;
       object-position: center 50%;
  }
  .store-19 #home .header-img, .store-22 #home .header-img {
    -o-object-position: center 60%;
       object-position: center 60%;
  }
  .store-14 #home .header-img, .store-23 #home .header-img {
    -o-object-position: center 40%;
       object-position: center 40%;
  }
}
@media screen and (min-width: 2560px) {
  #home .header-img {
    max-height: 900px;
  }
}

/* ------ */
/* BREADCRUMBS */
.breadcrumb {
  background: none;
  padding: 4px 0 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #005b82;
}
.breadcrumb * {
  color: inherit !important;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.45rem;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: ">";
  padding-right: 0.5rem;
  font-weight: 600;
  color: inherit;
}
@media screen and (min-width: 1024px) {
  .breadcrumb {
    font-size: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------ */
/* KONTAKT */
body.contact #novinky {
  padding: 8px 0 0;
}
body.contact #novinky .row {
  background: none;
  margin: 0;
}
body.contact #novinky h2 {
  margin-bottom: 22px;
}
body.contact #novinky .text-block {
  padding: 0 20px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.contact #novinky address {
  margin-bottom: 29px;
  font-weight: bold;
  font-size: 18px;
  color: #005b82;
}
body.contact #novinky p {
  background: url("../img/icons/clock2.svg") 0 0 no-repeat;
  background-size: 20px;
  padding-left: 29px;
  display: inline-block;
}
body.contact #extra {
  border-bottom: 1px solid #FFF;
  padding-bottom: 19px;
}
body.contact #extra .row {
  position: relative;
}
body.contact #extra .row:first-of-type {
  margin-bottom: 52px;
  padding-bottom: 23px;
}
body.contact #extra .row:first-of-type:before {
  content: "";
  background: #FFF;
  width: 120vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -10vw;
}
body.contact #extra .row:nth-of-type(2) p,
body.contact #extra .row:nth-of-type(3) p,
body.contact #extra .row:nth-of-type(4) p {
  float: none;
  text-align: center;
}
body.contact #extra .col {
  padding-right: 30px;
}
body.contact #extra p {
  max-width: 260px;
}
@media screen and (min-width: 768px) {
  body.contact #novinky .row {
    background: #f8f8f8;
  }
  body.contact #novinky .text-block,
  body.contact #novinky address br,
  body.contact #novinky p {
    display: block;
  }
}
@media screen and (min-width: 1366px) {
  body.contact #novinky h2 {
    margin-bottom: 24px;
  }
  body.contact #novinky address {
    margin-bottom: 74px;
  }
  body.contact #novinky p {
    margin-bottom: 24px;
  }
  body.contact #extra .col {
    padding: 0 15px;
  }
  body.contact #extra p {
    max-width: 300px;
  }
}

#map {
  display: block;
  min-height: 382px;
  height: 100%;
  max-height: 100vh;
  margin: 0 -20px;
}
@media screen and (min-width: 768px) {
  #map {
    margin: 0;
  }
}

/* ------ */
/* AKCE / NOVINKDY - index */
#news {
  background: #f8f8f8;
  padding: 48px 20px 40px;
}
#news .container {
  max-width: 1442px;
}
#news .row:first-child {
  margin-bottom: 29px;
}
#news .row:first-child .col:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
#news .row:first-child a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #005b82;
}
#news .row:first-child a[role=link] {
  min-height: 44px;
  padding: 13px 0 8px;
}
#news .col {
  margin-bottom: 10px;
}
#news h2 {
  margin: 0;
}
#news .thumb {
  display: block;
  margin-bottom: 13px;
  position: relative;
}
#news .thumb:before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
}
#news .thumb:hover:before {
  opacity: 1;
}
#news .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
#news .title {
  text-transform: none;
  font-weight: normal;
  font-size: 26px;
}
#news a {
  color: inherit;
}
@media screen and (min-width: 600px) {
  #news .col {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1024px) {
  #news {
    padding: 58px 78px 54px;
  }
}

/* AKCE / NOVINKY - podstranka */
#novinky {
  padding: 8px 20px 20px;
}
#novinky .container {
  max-width: 1442px;
}
#novinky .filter-nav {
  margin-bottom: 15px;
  text-align: right;
}
#novinky .filter-nav .btn {
  margin: 0 0 10px 5px;
}
#novinky .filter-nav .btn:focus {
  outline: 3px solid #2DBCD8;
  outline-offset: 4px;
}
#novinky .row {
  background: #f8f8f8;
  margin-bottom: 20px;
}
#novinky .col-md {
  position: relative;
  aspect-ratio: 2/1.333;
}
#novinky .text-block {
  padding: 17px 17px 22px;
}
#novinky h2 {
  margin-bottom: 13px;
}
#novinky .date {
  display: block;
  margin-bottom: 19px;
  font-weight: bold;
  color: #005b82;
}
#novinky p {
  line-height: 1.2;
}
#novinky p + .btn {
  margin-top: 55px;
}
#novinky .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 91%);
}
#novinky .btn {
  min-width: 133px;
  min-height: 50px;
  line-height: 1.85;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  #novinky {
    padding: 8px 40px 20px !important;
  }
  #novinky + #newsletter {
    padding-top: 0;
  }
  #novinky .row {
    margin-bottom: 20px !important;
  }
  #novinky .text-block {
    padding: 30px 30px 20px !important;
  }
  #novinky .img,
  #novinky #map {
    display: block;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1024px) {
  #novinky {
    padding: 30px 78px 0;
  }
  #novinky .row {
    margin-bottom: 40px !important;
  }
  #novinky .text-block {
    max-width: 450px;
    padding: 53px 30px 56px 56px !important;
  }
  #novinky h2 {
    margin-bottom: 1.5rem;
  }
  #novinky form {
    margin: 57px 0 26px;
  }
  #novinky .btn {
    display: inline-block;
  }
}
@media screen and (min-width: 1180px) {
  #novinky .row {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1366px) {
  #novinky .text-block {
    min-height: 456px;
  }
  #novinky .img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* ------ */
/* AKTUALIA - DETAIL */
.article-detail {
  font-size: 15px;
  font-size: 0.9375rem;
}
.article-detail .order-sm-2 {
  text-align: center;
}
.article-detail .date {
  display: block;
  margin: 15px 0;
}
.article-detail article p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.article-detail .quick-links {
  padding-top: 0;
  padding-bottom: 30px;
}
.article-detail .text-block {
  min-height: 231px;
}
.article-detail .text-block .map-small {
  max-width: 100%;
  margin: 25px 0 0;
  position: static;
  float: none;
}
.article-detail .thumb {
  border: 1px solid #f8f8f8;
  width: 100%;
  display: block;
  position: relative;
}
.article-detail .thumb:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.article-detail .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  position: absolute;
  top: 0;
  left: 0;
}
.article-detail .gallery {
  padding-top: 0;
}
.article-detail .gallery .item:nth-child(n+3) {
  display: none;
}
@media screen and (min-width: 480pxpx) {
  .article-detail .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 576pxpx) {
  .article-detail .order-sm-2 {
    text-align: right;
  }
  .article-detail .date {
    margin-top: 0;
  }
  .article-detail article {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768pxpx) {
  .article-detail .quick-links {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1024pxpx) {
  .article-detail .order-sm-2 {
    padding-bottom: 70px;
  }
  .article-detail .gallery .grid {
    display: block;
  }
  .article-detail .gallery .item {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1200pxpx) {
  .article-detail article {
    padding-bottom: 49px;
  }
}

/* ------ */
/* ONAS */
.content-block {
  padding: 20px;
}
.content-block .container {
  max-width: 1442px;
}
.content-block .row {
  margin-bottom: 20px;
}
.content-block .col-md {
  position: relative;
}
.content-block .text-block {
  padding: 20px 0;
}
.content-block p {
  line-height: 1.2;
}
.content-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 91%);
}
@media screen and (min-width: 768px) {
  .content-block {
    padding: 20px 40px 0;
  }
  .content-block + #newsletter {
    padding-top: 0;
  }
  .content-block .row {
    margin-bottom: 40px;
  }
  .content-block .row:nth-of-type(2n) img {
    clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
  }
  .content-block .col-md .text-block {
    padding: 15px 30px 30px;
  }
  .content-block img {
    display: block;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1024px) {
  .content-block {
    padding: 30px 78px 0;
  }
  .content-block .breadcrumb {
    display: none;
  }
  .content-block .row {
    margin-bottom: 40px;
  }
  .content-block .col-md {
    width: 47.5%;
  }
  .content-block .col-md:first-of-type {
    width: 52.5%;
  }
  .content-block .col-md .text-block {
    padding: 45px 60px 60px;
  }
}
@media screen and (min-width: 1180px) {
  .content-block {
    padding-top: 75px;
  }
  .content-block .row {
    margin-bottom: 60px;
  }
  .content-block .row:nth-of-type(2n) .text-block {
    padding-left: 100px;
  }
  .content-block .col-md .text-block {
    padding: 60px 80px 56px 60px;
  }
}
@media screen and (min-width: 1366px) {
  .content-block .row:nth-of-type(2n) .text-block {
    padding-left: 125px;
  }
  .content-block .col-md .text-block {
    padding: 95px 130px 56px 60px;
  }
  .content-block .text-block {
    min-height: 456px;
  }
  .content-block img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* ------ */
/* NABIDKA */
#nabidka {
  padding: 48px 20px 40px;
}
#nabidka .container {
  max-width: 1442px;
}
#nabidka .row:first-child {
  margin-bottom: 29px;
}
#nabidka .row:first-child .col:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
#nabidka .row:first-child a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #005b82;
}
#nabidka .row:first-child a[role=link] {
  min-height: 44px;
  padding: 13px 0 8px;
}
#nabidka .col {
  margin-bottom: 10px;
}
#nabidka .col:nth-child(2) .thumb {
  margin: -20px 0;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0% 91%);
}
#nabidka .col:nth-child(3) .thumb {
  clip-path: polygon(0 0, 100% 9%, 100% 100%, 0% 100%);
}
#nabidka .col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#nabidka .thumb {
  background: #1d2231;
  display: block;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%);
}
#nabidka .thumb:before {
  content: "";
  background: #1d2231;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0.5;
}
#nabidka .thumb:hover:before, #nabidka .thumb:focus:before {
  opacity: 0.75;
}
#nabidka .thumb:focus {
  outline: 3px solid #2DBCD8;
  outline-offset: 4px;
  -webkit-transition: outline 0s;
  transition: outline 0s;
}
#nabidka .thumb strong {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  text-shadow: 2px 1px 5px #000;
  letter-spacing: 5px;
  font-size: 30px;
  font-size: 1.875rem;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#nabidka h2 {
  margin: 0;
}
.sp #nabidka {
  padding-top: 8px;
}
@media screen and (min-width: 576px) {
  #nabidka .col {
    margin-bottom: 15px;
  }
  #nabidka .col:nth-child(2) .thumb {
    margin: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 91%) !important;
  }
  #nabidka .thumb {
    clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%) !important;
  }
  #nabidka .thumb strong {
    letter-spacing: 2px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  #nabidka {
    padding: 64px 78px 57px;
  }
  #nabidka .thumb strong {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .sp #nabidka {
    padding-top: 30px;
  }
}

/* ------ */
/* OBCHODY */
#stores {
  background: #f8f8f8;
}
#stores > div {
  border-bottom: 1px solid #FFF;
  padding: 42px 20px;
  text-align: center;
}
#stores .store-name {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  font-weight: bold;
  position: absolute;
  inset: 0;
  z-index: 9;
}
@media screen and (min-width: 1024px) {
  #stores > div {
    padding: 60px 78px 11px;
  }
}
@media screen and (min-width: 1366px) {
  #stores > div {
    padding-left: 150px;
    padding-right: 150px;
  }
}

/* OBCHODY - seznam */
.list-stores {
  max-width: 1377px;
  margin: 10px auto 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-stores .item {
  width: calc(50% - 20px);
  margin: 10px;
}
.list-stores .thumb {
  width: 100%;
  border-radius: 50%;
  background: #FFF;
  display: block;
  position: relative;
  overflow: hidden;
  outline-offset: 7px;
}
.list-stores .thumb:before {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.list-stores .thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 667px) {
  .list-stores .item {
    width: calc(33% - 20px);
  }
}
@media screen and (min-width: 768px) {
  .list-stores .item {
    width: calc(25% - 20px);
  }
}
@media screen and (min-width: 1024px) {
  .list-stores .item {
    width: calc(20% - 20px);
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .list-stores .thumb {
    width: 195px;
  }
}

/* ------ */
/*
 * Mapplic - Custom Interactive Map Plugin by @sekler
 * Version 3.1
 * http://www.mapplic.com
 */
.mapplic-element a {
  color: #333;
  text-decoration: none !important;
}

.mapplic-element input,
.mapplic-element button {
  outline: none;
}

.mapplic-element * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mapplic-element {
  background-color: #fff;
  font-size: 0;
  overflow: hidden;
}

/* Fullscreen */
:-webkit-full-screen {
  width: 100%;
  height: 100% !important;
}

:-webkit-full-screen .mapplic-fullscreen-button {
  background-image: url(/img/mapplic/fullscreen-exit.png);
}

/* Preloader */
.mapplic-element.mapplic-loading {
  background: #f4f4f4 url(/img/mapplic/loader.gif) no-repeat center;
}

.mapplic-element.mapplic-error {
  background: #f4f4f4 url(/img/mapplic/error-icon.png) no-repeat center;
}

.mapplic-element > * {
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.mapplic-element.mapplic-loading > * {
  opacity: 0;
}

/* Main elements */
.mapplic-container {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 70%;
  height: 100%;
}

:-webkit-full-screen .mapplic-container {
  width: 80%;
}

.mapplic-map {
  position: absolute;
  left: 0;
  top: 0;
  overflow: visible !important;
}

/* Map layer */
.mapplic-layer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mapplic-layer img {
  width: 100%;
}

.mapplic-map .mapplic-map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mapplic-map.mapplic-zoomable .mapplic-map-image {
  cursor: url(/img/mapplic/openhand.cur), default;
}

.mapplic-map.mapplic-zoomable.mapplic-dragging .mapplic-map-image {
  cursor: url(/img/mapplic/closedhand.cur), move;
}

.mapplic-locations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mapplic-pin {
  background-image: url(/img/mapplic/pin.png);
  background-size: 18px 24px;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 24px;
  margin-top: -23px;
  margin-left: -9px;
  position: absolute;
}

.mapplic-pin.iconpin {
  background-image: url(/img/mapplic/pin-large.png);
  background-size: 30px 42px;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 36px;
  text-align: center;
  width: 30px;
  height: 42px;
  margin-top: -42px;
  margin-left: -15px;
}

.mapplic-pin.orange {
  background-image: url(/img/mapplic/pin-orange.png);
}

.mapplic-pin.yellow {
  background-image: url(/img/mapplic/pin-yellow.png);
}

.mapplic-pin.green {
  background-image: url(/img/mapplic/pin-green.png);
}

.mapplic-pin.blue {
  background-image: url(/img/mapplic/pin-blue.png);
}

.mapplic-pin.purple {
  background-image: url(/img/mapplic/pin-purple.png);
}

.mapplic-pin.iconpin.orange {
  background-image: url(/img/mapplic/pin-orange-large.png);
}

.mapplic-pin.iconpin.yellow {
  background-image: url(/img/mapplic/pin-yellow-large.png);
}

.mapplic-pin.iconpin.green {
  background-image: url(/img/mapplic/pin-green-large.png);
}

.mapplic-pin.iconpin.blue {
  background-image: url(/img/mapplic/pin-blue-large.png);
}

.mapplic-pin.iconpin.purple {
  background-image: url(/img/mapplic/pin-purple-large.png);
}

.mapplic-pin.circular {
  background-image: none;
  background-color: #fb7575;
  border-radius: 6px;
  -webkit-box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
}

.mapplic-pin.transparent {
  background-image: none;
  background-color: #fb7575;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0.5 !important;
}

.mapplic-pin.mapplic-animate {
  -webkit-animation: bounce-in 0.4s forwards;
  animation: bounce-in 0.4s forwards;
}

@-webkit-keyframes bounce-in {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  33% {
    margin-top: -25px;
    opacity: 1;
  }
  66% {
    margin-top: -30px;
  }
  100% {
    margin-top: -23px;
    opacity: 1;
  }
}
/* Minimap */
.mapplic-minimap {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: absolute;
  width: 140px;
  margin: 10px;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  overflow: hidden;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mapplic-minimap img {
  width: 100%;
}

.mapplic-minimap-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mapplic-minimap .mapplic-minimap-active {
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  -webkit-transition: clip 0.1s;
  transition: clip 0.1s;
}

.mapplic-minimap-background {
  -webkit-filter: blur(2px);
}

/* Clear Button */
.mapplic-clear-button {
  background-color: #fff;
  background-image: url(/img/mapplic/reset.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  border-radius: 3px;
  margin: 10px;
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mapplic-clear-button:active {
  background-color: #eee;
}

/* Zoom Buttons */
.mapplic-zoom-buttons {
  margin: 10px;
  position: absolute;
  left: 0;
  bottom: 40px;
}

.mapplic-zoom-buttons a {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  color: #fff !important;
  display: block;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  line-height: 24px;
  width: 28px;
  height: 28px;
}

.mapplic-zoom-buttons a:active {
  background-color: #f4f4f4;
}

.mapplic-zoom-buttons a.mapplic-disabled {
  background-color: #ccc !important;
  cursor: default;
}

a.mapplic-zoomin-button {
  background-image: url(/img/mapplic/plus.png);
  background-size: 10px 10px;
  border-radius: 3px 3px 0 0;
}

a.mapplic-zoomout-button {
  background-image: url(/img/mapplic/minus.png);
  background-size: 10px 10px;
  border-radius: 0 0 3px 3px;
  border-top: none;
}

/* Fullscreen Button */
.mapplic-fullscreen-button {
  background-color: #fff;
  background-image: url(/img/mapplic/fullscreen.png);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  border-radius: 2px;
  margin: 10px;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}

/* Levels */
.mapplic-levels {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
}

.mapplic-levels > * {
  border: 1px solid #eee;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mapplic-levels-select {
  border-color: #f8f8f8;
  background-color: #005b82;
  color: #FFF;
  margin: 0;
  padding: 7px 10px 8px;
  font-weight: bold;
  font-size: 16px;
}
.mapplic-levels-select:focus {
  outline: 3px solid #1d2231;
  outline-offset: 4px;
}

.mapplic-levels a {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  height: 24px;
  width: 100%;
}

.mapplic-levels a:active {
  background-color: #f8f8f8;
}

.mapplic-levels .mapplic-levels-up {
  background-image: url(/img/mapplic/arrow-up.png);
  background-size: 8px 4px;
  border-radius: 3px 3px 0 0;
}

.mapplic-levels .mapplic-levels-down {
  background-image: url(/img/mapplic/arrow-down.png);
  background-size: 8px 4px;
  border-top: none;
  border-radius: 0 0 3px 3px;
}

.mapplic-levels a.mapplic-disabled {
  background-color: #ccc !important;
  cursor: default;
}

/* Sidebar */
.mapplic-sidebar {
  background-color: #f8f8f8;
  width: 30%;
  height: 100%;
  float: left;
  position: relative;
}

:-webkit-full-screen .mapplic-sidebar {
  width: 20%;
}

/* Search */
.mapplic-search-form {
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #f4f4f4;
  padding: 14px 12px;
  margin: 0;
  width: 100%;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mapplic-search-input {
  background-image: url(/img/mapplic/viewer.png);
  background-size: 17px 16px;
  background-repeat: no-repeat;
  background-position: 8px;
  border: 2px solid #eee;
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  line-height: 20px;
  height: 38px;
  margin: 0;
  padding: 8px 32px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.1s;
  transition: border-color 0.1s;
}

.mapplic-search-input:focus {
  border-color: #6ed8dd;
}

.mapplic-search-clear {
  background-image: url(/img/mapplic/cross.png);
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
  border: none;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 2px 0;
  width: 34px;
  height: 34px;
}

.mapplic-not-found {
  color: #bbb;
  display: none;
  font-size: 13px;
  padding: 0 30px;
  position: absolute;
  text-align: center;
  top: 100px;
}

/* List */
.mapplic-list-container {
  padding-top: 67px;
  height: 100%;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mapplic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  height: 100%;
}

.mapplic-list-container ol {
  border-color: #eee;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mapplic-list-container li {
  border-color: inherit;
}

.mapplic-list-category > a {
  background-color: #888;
  -webkit-box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.05) inset;
          box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.05) inset;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 26px;
  padding: 10px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mapplic-list-category ol {
  border-bottom: 2px solid #eee !important;
}

.mapplic-list-thumbnail {
  border-radius: 2px;
  float: left;
  margin-right: 10px;
}

.mapplic-list-category > a .mapplic-list-count {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  float: right;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  padding: 0 6px;
  margin-left: 10px;
  text-align: center;
  margin-top: 4px;
  -webkit-transition: border-radius 0.2s;
  transition: border-radius 0.2s;
}

.mapplic-list-location {
  border-bottom: 1px solid #eee;
  margin: 0;
}

.mapplic-list-location > a {
  background-color: #fff;
  border-left: 1px solid transparent;
  display: block;
  font-size: 14px;
  padding: 10px;
  min-height: 50px;
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}

.mapplic-list-location > a:hover {
  background-color: #f4fcfc;
  border-left: 2px solid;
  border-color: inherit;
}

.mapplic-list-location h4 {
  color: #444;
  font-size: 16px;
  font-weight: normal;
  margin: 4px 0 8px 0;
  text-align: left;
}

.mapplic-list-location span { /* 42 -20 13 30*/
  color: #bbb;
  font-size: 13px;
  font-weight: normal;
}

/* Tooltip */
.mapplic-tooltip {
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 260px;
  min-width: 120px;
  margin-top: -76px;
  padding: 16px;
  position: absolute;
  -webkit-transition: margin 0.1s;
  transition: margin 0.1s;
}

.mapplic-tooltip-title {
  color: #333;
  font-size: 20px;
  font-weight: normal;
  margin: 0 30px 12px 0;
}

.mapplic-hovertip {
  min-width: 30px;
  padding: 6px 14px;
  pointer-events: none;
}

.mapplic-hovertip .mapplic-tooltip-title {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.mapplic-bottom .mapplic-tooltip-triangle {
  border-color: transparent transparent #fff transparent;
  border-width: 0 7px 8px 7px;
  top: 0;
  margin-top: -8px;
}

.mapplic-tooltip-content {
  max-height: 160px;
  overflow-y: auto;
}

.mapplic-tooltip-content p {
  margin-top: 0;
}

.mapplic-tooltip-image {
  width: 46%;
  height: 100%;
  /*margin: 5px 20px 5px 0;*/
  margin: -16px 16px -16px -16px;
  float: left;
}

.mapplic-tooltip-description,
.mapplic-tooltip p {
  color: #aaa;
  font-size: 13px;
  line-height: 20px;
}

.mapplic-tooltip-link {
  background-color: #6CB5F4;
  border-radius: 2px;
  color: #fff !important;
  float: right;
  font-size: 14px;
  line-height: 32px;
  padding: 0 12px;
  margin-top: 10px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.mapplic-tooltip-link:hover {
  background-color: #888;
}

.mapplic-tooltip img {
  max-width: 100%;
}

.mapplic-tooltip-close {
  background-image: url(/img/mapplic/cross.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  float: right;
  margin: -10px -14px 0 0;
  padding: 10px 12px;
  width: 10px;
  height: 10px;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.mapplic-tooltip-close:hover {
  opacity: 1;
}

.mapplic-tooltip-triangle {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: -8px;
  margin-left: -7px;
  -webkit-transition: left 0.1s;
  transition: left 0.1s;
}

/* Tooltip down */
.mapplic-tooltip-down .mapplic-tooltip-triangle {
  border-width: 0 7px 8px 7px;
  border-color: transparent transparent #fff transparent;
  top: 0;
  margin-top: -8px;
}

/* Coordinates */
.mapplic-coordinates {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  position: absolute;
  margin: 10px;
  margin-left: -80px;
  padding: 4px 6px;
  font-size: 14px;
  top: 0;
  left: 50%;
  pointer-events: none;
}

/* Responsive layout */
@media all and (max-width: 667px) {
  .mapplic-container,
  .mapplic-sidebar {
    width: 100%;
  }
  .mapplic-tooltip {
    max-width: 240px;
  }
  .mapplic-minimap {
    width: 120px;
  }
  .mapplic-element {
    height: auto !important;
  }
  .mapplic-fullscreen-button {
    display: none;
  }
  .mapplic-search-form {
    border-right: none;
  }
}
/* RETINA */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .mapplic-search-clear,
  .mapplic-tooltip-close {
    background-image: url(/img/mapplic/cross@2x.png);
  }
  .mapplic-levels .mapplic-levels-up {
    background-image: url(/img/mapplic/arrow-up@2x.png);
  }
  .mapplic-levels .mapplic-levels-down {
    background-image: url(/img/mapplic/arrow-down@2x.png);
  }
  a.mapplic-zoomin-button {
    background-image: url(/img/mapplic/plus@2x.png);
  }
  a.mapplic-zoomout-button {
    background-image: url(/img/mapplic/minus@2x.png);
  }
  .mapplic-search-input {
    background-image: url(/img/mapplic/viewer@2x.png);
  }
  .mapplic-pin {
    background-image: url(/img/mapplic/pin@2x.png);
  }
  .mapplic-pin.orange {
    background-image: url(/img/mapplic/pin-orange@2x.png);
  }
  .mapplic-pin.yellow {
    background-image: url(/img/mapplic/pin-yellow@2x.png);
  }
  .mapplic-pin.green {
    background-image: url(/img/mapplic/pin-green@2x.png);
  }
  .mapplic-pin.blue {
    background-image: url(/img/mapplic/pin-blue@2x.png);
  }
  .mapplic-pin.purple {
    background-image: url(/img/mapplic/pin-purple@2x.png);
  }
  .mapplic-pin.iconpin {
    background-image: url(/img/mapplic/pin-large@2x.png);
  }
  .mapplic-pin.iconpin.orange {
    background-image: url(/img/mapplic/pin-orange-large@2x.png);
  }
  .mapplic-pin.iconpin.yellow {
    background-image: url(/img/mapplic/pin-yellow-large@2x.png);
  }
  .mapplic-pin.iconpin.green {
    background-image: url(/img/mapplic/pin-green-large@2x.png);
  }
  .mapplic-pin.iconpin.blue {
    background-image: url(/img/mapplic/pin-blue-large@2x.png);
  }
  .mapplic-pin.iconpin.purple {
    background-image: url(/img/mapplic/pin-purple-large@2x.png);
  }
  .mapplic-clear-button {
    background-image: url(/img/mapplic/reset@2x.png);
  }
}
/* Map */
.mapplic-element svg {
  width: 100%;
  height: 100%;
}

.mapplic-element svg a {
  cursor: pointer;
}

.mapplic-clickable:not(g),
g.mapplic-clickable > * {
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.mapplic-map-image *[id^=nopointer] {
  pointer-events: none;
}

[id^=landmarks] a:focus {
  outline: 0 !important;
}
[id^=landmarks] a:focus > *:not(.logo) {
  fill: gray;
  stroke: #1d2231;
  stroke-width: 0.25px;
}
[id^=landmarks] .mapplic-clickable {
  cursor: pointer;
}
[id^=landmarks] .mapplic-clickable:focus {
  -webkit-transition: none;
  transition: none;
  outline-width: 1px !important;
}
[id^=landmarks] .mapplic-clickable:focus > *:not(.logo) {
  fill: #2DBCD8;
  stroke: #005b82;
  stroke-width: 0.25px;
}

/* ------ */
/* MAPA */
#map-wrapper {
  border-bottom: 1px solid #FFF;
  background: #f8f8f8;
  width: 100%;
  height: 80vh;
  text-align: center;
  position: relative;
}
#map-wrapper .mapplic-element {
  height: 100% !important;
}
#map-wrapper .mapplic-container {
  background: #f8f8f8;
}
#map-wrapper .mapplic-zoom-buttons {
  text-align: center;
  margin: auto;
  position: absolute;
  top: 30px;
  bottom: auto;
  left: 0;
  right: 0;
}
#map-wrapper .mapplic-zoom-buttons > a {
  border-radius: 50%;
  border: 1px solid #f8f8f8;
  background: #005b82;
  width: 36px;
  height: 36px;
  margin: 0 6px;
  text-align: center;
  color: #FFF;
  display: inline-block;
  position: relative;
}
#map-wrapper .mapplic-zoom-buttons > a:before, #map-wrapper .mapplic-zoom-buttons > a:after {
  content: "";
  background: #FFF;
  width: 20px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#map-wrapper .mapplic-zoomin-button:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#map-wrapper .mapplic-levels {
  width: 100px;
  height: 100px;
  margin: 0;
  top: 30px;
  right: 60px;
}
#map-wrapper .mapplic-levels .mapplic-levels-up,
#map-wrapper .mapplic-levels .mapplic-levels-down {
  display: none;
}
#map-wrapper .mapplic-levels a {
  border-radius: 50%;
  border: 0;
  background: #005b82;
  width: 36px;
  height: 36px;
  margin: 0 0 12px;
  position: relative;
}
#map-wrapper .mapplic-levels a:before, #map-wrapper .mapplic-levels a:after {
  content: "";
  background: #FFF;
  width: 10px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  -webkit-transform: rotate(45deg) translate(4px);
          transform: rotate(45deg) translate(4px);
}
#map-wrapper .mapplic-levels a:before {
  -webkit-transform: rotate(-45deg) translate(-4px);
          transform: rotate(-45deg) translate(-4px);
}
#map-wrapper .mapplic-levels .mapplic-levels-down {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
#map-wrapper .mapplic-levels .mapplic-disabled {
  background-color: silver;
  pointer-events: none;
  opacity: 0.35;
}
#map-wrapper .mapplic-clear-button,
#map-wrapper .mapplic-tooltip-close {
  display: none;
}
#map-wrapper .mapplic-tooltip {
  border: 0;
  border-radius: 0;
  background: #005b82;
  min-width: 196px;
  padding: 10px 10px 7px;
}
#map-wrapper .mapplic-tooltip a {
  display: none !important;
  text-decoration: underline !important;
  letter-spacing: 1px;
  font-weight: normal;
  font-size: 16px;
  color: #000;
}
#map-wrapper .mapplic-tooltip-triangle {
  border-top-color: #005b82;
}
#map-wrapper .mapplic-tooltip-title {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 1px #000;
  color: #FFF;
}
#map-wrapper .mapplic-list {
  display: none;
}
@media screen and (min-width: 768px) {
  #map-wrapper {
    border: 0;
    margin-top: 30px;
  }
}

/* ------ */
body.store #map-wrapper {
  pointer-events: none;
}
body.store #map-wrapper .mapplic-levels,
body.store #map-wrapper .mapplic-zoom-buttons {
  display: none;
}
body.store #map-wrapper .mapplic-hovertip {
  display: none !important;
}

/* SHOP DETAIL */
.store-detail {
  padding: 0;
}
.store-detail .container {
  max-width: 1330px;
  padding: 0;
}
.store-detail .shop-logo {
  border-radius: 50%;
  width: 130px;
  max-width: none;
  float: right;
  margin: 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.store-detail .shop-logo:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.store-detail .shop-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.store-detail article {
  padding: 23px 25px 20px 20px;
}
.store-detail article .breadcrumb {
  margin-bottom: 31px;
}
.store-detail article p {
  max-width: 845px;
  margin-bottom: 1.45rem;
  line-height: 1.45;
}
.store-detail aside {
  width: 100%;
}
.store-detail aside p {
  margin-bottom: 9px;
  padding-left: 35px;
  line-height: 1.15;
  position: relative;
}
.store-detail aside p:last-of-type {
  margin-bottom: 0;
}
.store-detail aside a {
  text-decoration: none;
  font-weight: normal;
}
.store-detail aside img {
  width: 30px;
  max-width: 19px;
  max-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.store-detail .text-block {
  background: #f8f8f8;
  width: 100%;
  padding: 22px 20px;
  overflow: hidden;
}
@media screen and (min-width: 400px) {
  .store-detail .shop-logo {
    width: 176px;
  }
}
@media screen and (min-width: 768px) {
  .store-detail {
    padding: 74px 30px;
  }
  .store-detail article {
    padding: 0 30px 0 0;
  }
  .store-detail article .breadcrumb {
    display: none;
  }
  .store-detail aside {
    width: 270px;
  }
  .store-detail aside .shop-logo {
    display: none;
  }
  .store-detail aside p {
    margin-bottom: 27px;
    padding-left: 45px;
    line-height: 1.5;
  }
  .store-detail aside img {
    max-width: none;
    max-height: none;
  }
  .store-detail .text-block {
    padding: 31px 29px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .store-detail {
    padding: 74px;
  }
  .store-detail article {
    padding: 0 60px 0 0;
  }
  .store-detail aside {
    width: 308px;
  }
}
@media screen and (min-width: 1366px) {
  .store-detail article {
    padding: 0;
  }
}

/* ------ */
.store-map {
  border-bottom: 1px solid #FFF;
  background: #f8f8f8;
  min-height: 456px;
  max-height: 100vh;
}
@media screen and (min-width: 1024px) {
  .store-map {
    min-height: 600px;
  }
}

/* ------ */
/* GALLERY */
.store-gallery {
  background: #1d2231;
  padding: 60px 20px;
}
.store-gallery .slider {
  display: grid;
  grid-gap: 19px;
  grid-template-columns: repeat(2, 1fr);
}
.store-gallery .item {
  position: relative;
  cursor: pointer;
}
.store-gallery .item:nth-child(n+5) {
  display: none;
}
.store-gallery .item:after {
  content: "";
  background: #1d2231 url("../img/icons/search.svg") center no-repeat;
  background-size: 50px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
}
.store-gallery .item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.store-gallery .item:hover:after, .store-gallery .item:focus:after {
  background-color: rgba(29, 34, 49, 0.75);
  opacity: 1;
}
.store-gallery .item:focus {
  outline: 0 !important;
}
.store-gallery .item:focus:after {
  -webkit-box-shadow: inset 0 0 0 5px #2DBCD8;
          box-shadow: inset 0 0 0 5px #2DBCD8;
}
.store-gallery .slick-arrow {
  border-radius: 50%;
  border: 0;
  background: #01afd3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='32' height='60' viewBox='0 0 32 60'%3E%3Cpath d='M31.5.5c.7.7.7 1.9 0 2.6L4.4 30l27 26.9c.7.7.7 1.9 0 2.6-.7.7-1.9.7-2.6 0L.5 31.3c-.3-.4-.5-.8-.5-1.3s.2-.9.5-1.3L28.9.5c.7-.7 1.9-.7 2.6 0z'/%3E%3C/svg%3E") 50% 50% no-repeat;
  background-size: 11px 18px !important;
  width: 31px;
  height: 31px;
  text-indent: -999em;
  position: absolute;
  top: calc(50% - 15.5px);
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.store-gallery .slick-arrow:hover {
  background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23082d41' width='32' height='60' viewBox='0 0 32 60'%3E%3Cpath d='M31.5.5c.7.7.7 1.9 0 2.6L4.4 30l27 26.9c.7.7.7 1.9 0 2.6-.7.7-1.9.7-2.6 0L.5 31.3c-.3-.4-.5-.8-.5-1.3s.2-.9.5-1.3L28.9.5c.7-.7 1.9-.7 2.6 0z'/%3E%3C/svg%3E") 50% 50% no-repeat;
}
.store-gallery .slick-prev {
  left: -45px;
}
.store-gallery .slick-next {
  right: -45px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 568px) {
  .store-gallery .slider {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .store-gallery {
    padding: 60px;
  }
  .store-gallery .slider {
    display: block;
    max-width: 1354px;
    margin: 0 auto;
  }
  .store-gallery .item {
    display: block !important;
    margin: 0 7.5px;
  }
}
@media screen and (min-width: 1024px) {
  .store-gallery {
    padding: 66px 122px 70px;
  }
  .store-gallery .item {
    margin: 0 15px;
  }
}

/* ------ */
/* NAVIC */
#extra {
  background: #FFF;
  padding: 52px 20px 71px;
  text-align: center;
}
#extra .container {
  max-width: 1400px;
}
#extra .col {
  clear: both;
}
#extra h2 {
  margin-bottom: 29px;
  text-align: left;
}
#extra .thumb {
  width: 41%;
  height: 103px;
  display: block;
  margin-bottom: 50px;
  float: left;
}
#extra img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#extra .title {
  display: block;
  margin-bottom: 23px;
  text-transform: none;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  color: #005b82;
}
#extra p {
  width: 59%;
  max-width: 220px;
  margin: 0 auto 30px;
  line-height: 1.5;
  text-align: left;
  float: left;
}
@media screen and (min-width: 600px) {
  #extra h2 {
    margin-bottom: 4rem;
  }
  #extra .col {
    margin-bottom: 15px;
  }
  #extra .thumb {
    width: auto;
    float: none;
  }
  #extra .title {
    text-align: center;
  }
  #extra p {
    width: auto;
    float: none;
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
  #extra {
    padding: 69px 78px 71px;
  }
  #extra .col {
    margin-bottom: 0;
  }
}

/* ------ */
/* SOCIAL MEDIA */
#social {
  background: #1d2231;
  padding: 50px 20px 66px;
  color: #FFF;
  position: relative;
}
#social .container {
  max-width: 1442px;
}
#social .text-block {
  padding: 0px 56px 39px 0;
}
#social .social {
  position: absolute;
  top: 0;
  right: 9px;
}
#social .icon {
  display: block;
  max-width: 51px;
  max-height: 51px;
  margin-bottom: 15px;
}
#social .grid {
  max-width: 932px;
  float: right;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
#social .item {
  position: relative;
  cursor: pointer;
}
#social .item:after {
  content: "";
  background: #FFF url("../img/icons/icon-search.svg") center no-repeat;
  background-size: 50px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
  -webkit-filter: invert(1);
          filter: invert(1);
}
#social .item img {
  width: 100%;
  height: 100%;
}
#social .item:hover:after {
  opacity: 0.5;
}
@media screen and (min-width: 667px) {
  #social .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #social .text-block {
    padding: 0 100px 0 0;
  }
  #social .icon {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  #social {
    padding: 80px 40px;
  }
  #social .text-block {
    padding-right: 30px;
  }
  #social .social {
    position: static;
  }
}
@media screen and (min-width: 1024px) {
  #social {
    padding: 80px 78px;
  }
  #social .text-block {
    padding: 67px 0 0;
  }
  #social .icon {
    max-width: none;
    max-height: none;
  }
  #social .grid {
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1180px) {
  #social .text-block {
    padding: 67px 56px;
  }
}

/* ------ */
.eapps-instagram-feed-header-user-info-caption,
.eapps-instagram-feed-header-stats-item-label {
  opacity: 1 !important;
}

#eapps-instagram-feed-1 a.eapps-instagram-feed-header-follow-button,
#eapps-instagram-feed-1 a.eapps-instagram-feed-header-follow-button:hover {
  background: #005b82 !important;
  text-shadow: 0 0 1px #1d2231;
}

.eapps-instagram-feed-header-user-info-name > a[title="@orlicepark"][rel="noopener noreferrer nofollow"][target=_blank] div,
.eapps-instagram-feed-header-user-info-caption > a[title="@orlicepark"][rel="noopener noreferrer nofollow"][target=_blank] div {
  min-height: 24px;
}

/* ------ */
/* NEWSLETTER */
#newsletter {
  background: #f8f8f8;
  padding: 52px 20px 116px;
}
#newsletter .container {
  max-width: 1442px;
  background: #f8f8f8;
}
#newsletter h2 {
  margin-bottom: 36px;
}
#newsletter p {
  line-height: 1.5;
  font-weight: bold;
  font-size: 19px;
  font-size: 1.1875rem;
  color: #005b82;
}
#newsletter img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
  display: none;
}
#newsletter form {
  margin: 35px 0 26px;
}
#newsletter .form-control:focus {
  -webkit-box-shadow: inset 0 0 0 3px #005b82 !important;
          box-shadow: inset 0 0 0 3px #005b82 !important;
}
#newsletter .btn {
  min-width: 133px;
}
#newsletter .btn:focus {
  outline: 3px solid #2DBCD8;
  outline-offset: 4px;
}
#newsletter small {
  display: block;
  line-height: 1.5;
  font-size: 13px;
}
#newsletter small a {
  text-decoration: underline;
  color: inherit;
}
@media screen and (min-width: 768px) {
  #newsletter {
    background: none;
    padding: 52px 40px 75px;
  }
  #newsletter .col-md:nth-of-type(2) {
    padding: 30px;
  }
  #newsletter img {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  #newsletter {
    padding: 80px 78px 113px;
  }
  #newsletter .col-md:nth-of-type(2) {
    padding: 70px 40px 50px;
  }
  #newsletter h2 {
    margin-bottom: 1.5rem;
  }
  #newsletter form {
    margin: 57px 0 26px;
  }
}
@media screen and (min-width: 1366px) {
  #newsletter .col-md:nth-of-type(2) {
    padding: 70px 123px 50px 141px;
  }
  #newsletter p {
    padding-right: 100px;
  }
}
@media screen and (min-width: 1600px) {
  #newsletter .text-block {
    max-width: 450px;
  }
}

/* ------ */
/* FOOTER */
#footer {
  background: #1d2231;
  padding: 0 20px 33px;
  color: #FFF;
  position: relative;
}
#footer:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 109px solid transparent;
  border-right: 255px solid transparent;
  border-bottom: 48px solid #1d2231;
  position: absolute;
  bottom: 100%;
  left: -74px;
  z-index: 10;
}
#footer .container {
  max-width: 1326px;
}
#footer .row {
  margin-bottom: 30px;
}
#footer .logo {
  width: 121px;
  display: inline-block;
  margin-top: -14px;
  position: relative;
  z-index: 10;
}
#footer .logo img {
  max-width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#footer .social {
  padding-top: 14px;
  text-align: right;
  position: absolute;
  top: 80px;
  right: 22px;
}
#footer .icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 0 18px auto;
}
#footer strong {
  display: block;
  color: #2DBCD8;
}
#footer a {
  text-decoration: underline;
  color: inherit;
}
#footer a:hover {
  text-decoration: none;
}
#footer p {
  margin-bottom: 30px;
  line-height: 1.5;
}
#footer ul {
  margin: 0;
  line-height: 1.5;
}
#footer .skip-links:focus-within {
  bottom: 30px;
  left: 0;
}
@media screen and (min-width: 576px) {
  #footer ul {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 33px 40px 0;
  }
  #footer .logo {
    width: 150px;
  }
  #footer .social {
    position: static;
  }
  #footer .icon {
    display: inline-block;
    margin: 0 0 0 16px;
  }
}
@media screen and (min-width: 1024px) {
  #footer {
    padding: 33px 78px 0;
  }
  #footer:before {
    border-left: 109px solid transparent;
    border-right: 458px solid transparent;
    border-bottom: 53px solid #1d2231;
    left: 33px;
  }
  #footer [class^=col]:first-child {
    padding-left: 0;
  }
  #footer [class^=col]:last-child {
    padding-right: 0;
  }
  #footer .logo {
    margin: 0;
  }
}
@media screen and (min-width: 1180px) {
  #footer [class^=col] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1280px) {
  #footer .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
}
@media screen and (min-width: 1366px) {
  #footer [class^=col] {
    padding-left: 26px;
    padding-right: 26px;
  }
}
@media screen and (min-width: 1600px) {
  #footer {
    min-height: 306px;
    padding-left: 135px;
    padding-right: 141px;
  }
  #footer .row {
    margin-bottom: 59px;
  }
  #footer [class^=col] {
    padding-left: 42px;
    padding-right: 42px;
  }
  #footer [class^=col]:last-child {
    min-width: 555px;
  }
  #footer ul {
    gap: initial;
  }
}
@media screen and (min-width: 1920px) {
  #footer {
    width: 1600px;
    margin: auto;
    position: relative;
  }
  #footer:after {
    content: "";
    background: #1d2231;
    width: 150vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -25vw;
    z-index: -1;
  }
}

/* ------ */
/* ------ */
.icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-right: 13px;
}
.icon .svg {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.icon:hover .svg, .icon:focus .svg {
  fill: #FFF;
}
.icon:focus {
  border-radius: 50%;
  outline-color: #2DBCD8 !important;
  outline-offset: 6px;
}

/* ------ */
#wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* ------ */
/* CONTENT */
main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ------ */
.text-button {
  cursor: pointer;
}

li.active .text-button {
  cursor: default;
}

#search-results > .container > ul,
.search-group {
  margin-bottom: 50px;
}

.search-group h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

#search-results ul {
  list-style: none;
}

.search-result {
  color: #000;
}

/* ------ */
/* ERROR PAGE */
body.error {
  padding-top: 66px;
}
body.error #wrapper {
  min-height: 100%;
}
body.error main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
}
body.error #newsletter {
  display: none;
}
body.error #error {
  background: #f8f8f8;
  padding: 68px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
body.error #error p {
  line-height: 2.4;
}
body.error #error a {
  font-weight: 300;
}
body.error #error a:hover {
  color: inherit;
}
body.error .error-no {
  display: block;
  font-size: 55px;
  font-size: 3.4375rem;
}
@media screen and (min-width: 1024px) {
  body.error {
    padding-top: 98px;
  }
  body.error .error-no {
    margin-bottom: 29px;
    font-size: 105px;
    font-size: 6.5625rem;
  }
  body.error p {
    margin-bottom: 39px;
  }
}

/* ------ */
.flash {
  clear: both;
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 80px;
  padding: 18px;
}

.flash.info {
  background: #89A02C;
}

.flash.warning {
  background: #ff6600;
}

.flash.error {
  background: #C83737;
}

/* ------ */
#content {
  padding-bottom: 100px;
}
#content .container {
  max-width: 1442px;
}
#content h2 {
  margin-bottom: 15px;
  font-size: 30px;
}
#content p,
#content ul {
  margin-bottom: 25px;
}

/* ------ */
#search-results ul {
  padding: 0;
}

a:not([href]).link {
  cursor: pointer;
  text-decoration: underline;
}

a.anchor {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;
}

.skip-links {
  text-indent: -999em;
  position: absolute;
}
.skip-links:focus-within {
  text-indent: 0;
  font-weight: 600;
  font-size: 14px;
  color: #FFF;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}
.skip-links a {
  background: #1d2231;
  display: block;
  padding: 13px;
  color: #FFF;
  outline-color: #2DBCD8 !important;
  outline-offset: 0;
  -webkit-transition: none;
  transition: none;
}
/*# sourceMappingURL=style.css.map */
