/*====================== Alerts styling =================================*/
.messages__wrapper {
  position: fixed;
  top: 10vh;
  z-index: 100;
  width: 80%;
  max-width: 40em;
  left: calc(50% - 20em);
}
@media (max-width: 40em) {
  .messages__wrapper {
    left: 10%;
  }
}
body.toolbar-fixed .messages__wrapper {
  top: 20vh;
}
.alert {
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 1em;
  color: white;
}
.alert > p {
  margin: 0;
}
.alert--dismissible {
  padding-right: 2em;
}
.alert--success {
  background-color: #10b032;
}
.alert--info {
  background-color: #4591f2;
}
.alert--warning {
  background-color: #eab028;
}
.alert--danger {
  background-color: #d23544;
}
/*===================== Forms styling =======================================*/
input[type=email] {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
input[type=email].error {
  border-color: #C72240;
}
input[type=email]:focus {
  border-color: #858585;
}
input[type=tel] {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
input[type=tel].error {
  border-color: #C72240;
}
input[type=tel]:focus {
  border-color: #858585;
}
input[type=text] {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
input[type=text].error {
  border-color: #C72240;
}
input[type=text]:focus {
  border-color: #858585;
}
input[type=password] {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
input[type=password].error {
  border-color: #C72240;
}
input[type=password]:focus {
  border-color: #858585;
}
input[type=date] {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
input[type=date].error {
  border-color: #C72240;
}
input[type=date]:focus {
  border-color: #858585;
}
input[type=number] {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
input[type=number].error {
  border-color: #C72240;
}
input[type=number]:focus {
  border-color: #858585;
}
.js-form-type-radio input[type=radio],
.js-form-type-checkbox input[type=radio],
.js-form-type-radio input[type=checkbox],
.js-form-type-checkbox input[type=checkbox] {
  visibility: hidden;
  position: absolute;
}
.js-form-type-radio input[type=radio] + label,
.js-form-type-checkbox input[type=radio] + label,
.js-form-type-radio input[type=checkbox] + label,
.js-form-type-checkbox input[type=checkbox] + label {
  position: relative;
  padding-left: 2.15em;
  padding-top: 0.2em;
}
.js-form-type-radio input[type=radio] + label::before,
.js-form-type-checkbox input[type=radio] + label::before,
.js-form-type-radio input[type=checkbox] + label::before,
.js-form-type-checkbox input[type=checkbox] + label::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.375em;
  height: 1.375em;
  background-image: url("../images/form_elements.svg");
  background-repeat: no-repeat;
  background-position-x: 0;
}
.js-form-type-radio input[type=radio]:checked + label::before,
.js-form-type-checkbox input[type=radio]:checked + label::before,
.js-form-type-radio input[type=checkbox]:checked + label::before,
.js-form-type-checkbox input[type=checkbox]:checked + label::before {
  background-position-x: 100%;
}
.js-form-type-radio input[type=radio] + label::before,
.js-form-type-checkbox input[type=radio] + label::before {
  background-position-y: 0;
  background-size: 3.41em;
}
.js-form-type-radio input[type=checkbox] + label,
.js-form-type-checkbox input[type=checkbox] + label {
  padding-left: 2.5em;
}
.js-form-type-radio input[type=checkbox] + label::before,
.js-form-type-checkbox input[type=checkbox] + label::before {
  background-size: 2.841666em;
  background-position-y: 100%;
}
select {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
  box-shadow: none;
  line-height: 1.2em;
  font-size: 1em;
  background-color: white;
}
select.error {
  border-color: #C72240;
}
select:focus {
  border-color: #858585;
}
textarea {
  border: 0.0625em solid #011638;
  padding: 1em 1.5em;
  font-family: 'Martel sans', sans-serif;
  border-radius: 2.5em;
  max-width: 100%;
  transition: all 0.2s ease-in;
}
textarea.error {
  border-color: #C72240;
}
textarea:focus {
  border-color: #858585;
}
form .description {
  font-size: 0.8em;
}
.form-item {
  padding: 0 0 1em 0;
  max-width: 100%;
}
.form-item label {
  display: block;
}
.bef-exposed-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  padding: 1em 3em;
  background-color: white;
}
.bef-exposed-form > fieldset {
  margin: auto;
}
.bef-exposed-form .form-item {
  padding: 0;
}
.bef-exposed-form .form-radios {
  display: flex;
  flex-wrap: wrap;
}
.bef-exposed-form .form-radios > .form-item {
  margin: 1em;
  padding: 0;
}
.bef-exposed-form .form-radios label {
  padding: 1em 1.5em;
  color: #2B2B2B;
  font-weight: bold;
  font-size: 0.8em;
  cursor: pointer;
  transition: color 200ms ease-in, background-color 200ms ease-in;
  border-radius: 2em;
}
.bef-exposed-form .form-radios label:hover {
  background-color: #C09A51;
  color: white;
}
.bef-exposed-form .form-radios input[type=radio] {
  display: none;
}
.bef-exposed-form .form-radios input[type=radio]:checked + label {
  background-color: #C09A51;
  color: white;
}
.bef-exposed-form > .form-actions {
  width: 100%;
}
@media all and (max-width: 62rem) {
  .bef-exposed-form {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .bef-exposed-form > .form-item + .form-item {
    margin-top: 0.5em;
  }
  .bef-exposed-form .form-radios {
    justify-content: center;
  }
}
/*=========================== Buttons styling =========================*/
.button {
  color: white;
  background: #595959;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
.button:hover,
.button:active,
.button:focus {
  border: none;
  text-decoration: none;
}
.button--primary {
  color: white;
  background: #C09A51;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
.button--primary:hover,
.button--primary:active,
.button--primary:focus {
  border: none;
  text-decoration: none;
}
.button--primary:hover,
.button--primary:active,
.button--primary:focus {
  background: #a37f3b;
  text-decoration: none;
  font-weight: bold;
  color: white;
}
.button--secondary {
  color: white;
  background: #064333;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  border-radius: 2em;
  position: relative;
}
.button--secondary:hover,
.button--secondary:active,
.button--secondary:focus {
  border: none;
  text-decoration: none;
}
.button--secondary:hover,
.button--secondary:active {
  color: white;
  background-color: #05382b;
  font-weight: bold;
  text-decoration: none;
}
.button--inverted {
  color: #064333;
  background: #f2f0ee;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  border: 0.1rem solid currentColor;
}
.button--inverted:hover,
.button--inverted:active,
.button--inverted:focus {
  border: none;
  text-decoration: none;
}
.button--inverted:hover {
  border: 0.1rem solid currentColor;
}
.button--alert {
  cursor: pointer;
  position: relative;
  top: -0.15em;
  right: -1.3em;
  color: inherit;
  float: right;
  padding: 0;
  font-size: 1.35em;
  font-weight: normal;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  background: transparent;
  box-shadow: none;
}
.button--alert:hover {
  color: inherit;
  background: inherit;
}
.info-button {
  display: flex;
  width: 1.2em;
  height: 1.2em;
  padding: 1.05em 0.9em 0.75em 0.9em;
  border-radius: 50%;
  background-color: #C09A51;
  font-weight: bold;
  color: #f2f0ee;
  transition: 0.2s background-color ease-in;
  justify-content: center;
  align-items: center;
}
.info-button:hover,
.info-button:focus,
.info-button:active {
  background-color: #a37f3b;
  text-decoration: none;
}
.flexslider {
  background: none;
  border: none;
}
/*================================ Global styling ============================== */
body {
  margin: 0;
  font-family: 'Martel sans', sans-serif;
  color: #2B2B2B;
  background-color: white;
  font-weight: normal;
}
html {
  scroll-behavior: smooth;
}
html,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.paragraph ul,
.container--node-body ul,
.paragraph ol,
.container--node-body ol {
  padding-left: 1.3em;
}
.paragraph ul > li,
.container--node-body ul > li,
.paragraph ol > li,
.container--node-body ol > li {
  margin-bottom: 0.5em;
  line-height: normal;
  margin-top: 0.2em;
}
.paragraph ul > li p,
.container--node-body ul > li p,
.paragraph ol > li p,
.container--node-body ol > li p {
  line-height: 1.55em;
}
.paragraph ul.high > li,
.container--node-body ul.high > li,
.paragraph ol.high > li,
.container--node-body ol.high > li {
  margin-top: 1.1em;
}
.paragraph ul.extra > li,
.container--node-body ul.extra > li,
.paragraph ol.extra > li,
.container--node-body ol.extra > li {
  font-size: 1.1875em;
  line-height: 1.75;
}
.paragraph ul.large > li,
.container--node-body ul.large > li,
.paragraph ol.large > li,
.container--node-body ol.large > li {
  font-size: 1.5625em;
}
.paragraph ul.light > li,
.container--node-body ul.light > li,
.paragraph ol.light > li,
.container--node-body ol.light > li {
  font-size: 0.9375em;
}
@media (max-width: 50rem) {
  .paragraph ul.extra > li,
  .container--node-body ul.extra > li,
  .paragraph ol.extra > li,
  .container--node-body ol.extra > li {
    font-size: 1.1em;
  }
  .paragraph ul.large > li,
  .container--node-body ul.large > li,
  .paragraph ol.large > li,
  .container--node-body ol.large > li {
    font-size: 1.2em;
  }
}
.paragraph ul,
.container--node-body ul {
  list-style: none;
}
.paragraph ul > li,
.container--node-body ul > li {
  position: relative;
}
.paragraph ul > li::before,
.container--node-body ul > li::before {
  position: absolute;
  content: '\2022';
  color: inherit;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.paragraph ol,
.container--node-body ol {
  list-style: decimal;
}
.tpp-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tpp-flex > * {
  flex: 1 0 20em;
}
@media all and (max-width: 21em) {
  .tpp-flex > * {
    flex-shrink: 1;
  }
}
.tpp-flex > p {
  padding: 0.5em;
}
.tpp-flex > p + p {
  margin-top: 0;
}
.tpp-flex.flex--center {
  align-items: center;
}
.tpp-flex.flex--stretch {
  align-items: stretch;
}
.tpp-flex.flex--justify-center {
  justify-content: center;
}
.tpp-flex-nw {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
}
.tpp-flex-nw > * {
  max-width: calc(50% - 1.5em);
}
.tpp-flex-w {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.tpp-flex-w.flex--justify-center {
  justify-content: center;
}
@media all and (max-width: 35rem) {
  .tpp-flex-w {
    justify-content: center;
  }
}
.container {
  width: 96%;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}
.page-wrapper {
  margin: auto;
}
strong,
b {
  font-weight: 900;
}
small {
  font-size: 0.75rem;
}
i,
em {
  font-style: italic;
}
sub {
  vertical-align: sub;
  font-size: 0.7em;
}
sup {
  vertical-align: super;
  font-size: 0.7em;
}
p {
  line-height: 1.4;
}
p a:not([class*="button"]) {
  text-decoration: underline;
  transition: color 100ms ease-in;
}
p a:not([class*="button"]).cl-blue:hover,
p a:not([class*="button"]).cl-blue:active {
  color: #C09A51;
}
p a:not([class*="button"]).cl-red:hover,
p a:not([class*="button"]).cl-red:active {
  color: #372818;
}
p a:not([class*="button"]).cl-green:hover,
p a:not([class*="button"]).cl-green:active {
  color: #000000;
}
p a[href^="mailto:"] {
  color: #C09A51;
}
p a[href^="mailto:"]:hover,
p a[href^="mailto:"]:active {
  color: #C09A51;
}
p.extra {
  font-size: 1.1875em;
  line-height: 1.75;
}
p.large {
  font-size: 1.5625em;
}
p.light {
  font-size: 0.9375em;
  opacity: 0.5;
}
@media (max-width: 50rem) {
  p.extra {
    font-size: 1.1em;
  }
  p.large {
    font-size: 1.2em;
  }
}
p + p {
  margin-top: 1em;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.site-name {
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  display: block;
  position: absolute;
  text-indent: -66666px;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
h1 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-family: 'Martel sans', sans-serif;
  font-size: 4em;
}
@media (max-width: 50rem) {
  h1 {
    font-size: 3.2em;
  }
}
h2 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-family: 'Martel sans', sans-serif;
  font-size: 3em;
}
@media (max-width: 50rem) {
  h2 {
    font-size: 2.7em;
  }
}
h3 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-family: 'Martel sans', sans-serif;
  font-size: 1.5625em;
}
@media (max-width: 50rem) {
  h3 {
    font-size: 1.40625em;
  }
}
h4 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: 1.25em;
}
@media (max-width: 50rem) {
  h4 {
    font-size: 1.125em;
  }
}
h5 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: 1em;
}
h6 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
  font-size: inherit;
}
.subtitle {
  font-weight: 600;
  font-size: 1.5625em;
  display: block;
  margin-bottom: 0.5em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
picture > img {
  margin-left: auto;
  margin-right: auto;
}
.align-center > img {
  margin-left: auto;
  margin-right: auto;
}
.region--breadcrumb {
  position: relative;
}
nav.breadcrumb {
  width: 96%;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0;
}
nav.breadcrumb a {
  font-size: inherit;
  text-decoration: underline;
  color: #595959;
  font-weight: 400;
}
nav.breadcrumb ol {
  display: flex;
}
nav.breadcrumb ol > li {
  font-size: 0.8em;
  color: #595959;
  font-weight: 400;
  text-decoration: underline;
  opacity: 0.5;
}
nav.breadcrumb ol > li + li {
  position: relative;
  padding-left: 2em;
}
nav.breadcrumb ol > li + li::before {
  content: '<';
  display: block;
  position: absolute;
  left: 0.75em;
  top: calc(50% - 0.45em);
}
@media all and (max-width: 35rem) {
  nav.breadcrumb ol > li:last-child {
    display: none;
  }
  nav.breadcrumb ol > li {
    display: flex;
    align-items: center;
  }
}
.views-table-wrapper {
  overflow-x: scroll;
  padding-left: 0.0625em;
  padding-right: 0.0625em;
}
table {
  border-collapse: collapse;
  text-align: left;
}
table th,
table td {
  padding: 1em 2em;
}
table th {
  border-bottom: 0.0625em solid currentColor;
  font-weight: bold;
}
table td {
  border-bottom: 0.0625em solid currentColor;
}
table td:first-child {
  border-left: 0.0625em solid currentColor;
}
table td:last-child {
  border-right: 0.0625em solid currentColor;
}
@media (max-width: 50rem) {
  table th,
  table td {
    padding: 0.5em 1em;
  }
}
main.content {
  padding-top: 6rem;
  min-height: 62vh;
}
main.content > :last-child:not(#block-tpp-content) {
  padding-bottom: 3em;
}
main.content > #block-tpp-content:last-child > :last-child {
  padding-bottom: 3em;
}
@media all and (max-width: 62rem) {
  main.content {
    padding-top: 4.5rem;
  }
}
.path-frontpage main.content {
  padding-bottom: 0;
}
.page-node-type--page {
  background-color: #f2f0ee;
}
.ico--fb {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: 1.2em;
  background-position: left 100%;
}
.document a {
  color: #C72240;
}
.document .file--application-pdf a {
  padding-left: 1.5em;
  background-repeat: no-repeat;
  background-position: left;
  background-size: 1.25em;
}
.document--wide {
  width: 98%;
  margin: auto auto 1.5em;
  background-color: white;
  border-radius: 0 1.5em;
  box-shadow: 0.375em 0.375em 0.625em rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in;
}
.document--wide a {
  text-decoration: underline;
  font-weight: 800;
  display: block;
  padding: 1.75em 1.5em 1.75em 8em;
}
.document--wide .file--application-pdf a {
  padding-left: 8em;
  background-size: 1.5em;
  background-position-x: 2em;
}
.document--wide:hover {
  transform: scale(1.005);
  box-shadow: 0.375em 0.375em 0.625em rgba(0, 0, 0, 0.2);
}
ul.one-line,
ul.menu--footer {
  display: flex;
}
ul.one-line.center,
ul.menu--footer.center {
  justify-content: center;
}
ul.one-line > li,
ul.menu--footer > li {
  position: relative;
  text-align: center;
  margin: 0 1.5em;
}
ul.one-line > li + li::before,
ul.menu--footer > li + li::before {
  position: absolute;
  content: '';
  display: block;
  width: 0.1em;
  height: 1em;
  left: -1.55em;
  top: calc(50% - 0.45em);
  background-color: #C72240;
}
ul.list-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-left: -0.25em;
  margin-bottom: 2em;
  list-style: none;
}
ul.list-boxes > li {
  width: 12.75em;
  height: 4em;
  text-align: center;
  font-size: 1.1875em;
  font-weight: 700;
  border: 0.1em solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1em;
  margin: 0.8em 0.21em;
}
ul.list-boxes > li::before {
  display: none;
}
body.path-webform main,
body.path-form {
  padding-bottom: 1em;
}
@media (max-width: 35rem) {
  ul.one-line {
    flex-wrap: wrap;
  }
}
/*============================ Navbar ===================================== */
.menu-overlay.navbar--opened,
.ui-widget-overlay {
  background: black;
  opacity: 0.8;
}
.menu-overlay.navbar--opened {
  height: 100vh;
  position: fixed;
  width: 100vw;
  z-index: 99;
  top: 0;
  left: 0;
}
header#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  z-index: 99;
  background-color: white;
  height: 6rem;
  transition: height 200ms ease-in;
}
@media all and (min-width: 86rem) {
  header#navbar {
    padding-left: calc(50% - 84rem/2);
    padding-right: calc(50% - 84rem/2);
  }
}
@media all and (max-width: 86rem) {
  header#navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
header#navbar > #block-tpp-site-branding {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  max-width: 17.5em;
  padding: 0 0.8em;
  transition: padding 200ms ease-in;
}
header#navbar > #block-tpp-site-branding img {
  transition: width 200ms ease-in;
  height: auto;
  max-width: 100%;
}
header#navbar > #block-tpp-site-branding::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3.75em;
  left: calc(50% - 3.25em);
  background-image: url("../images/prazdroj_pecet.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 6.5em;
  height: 6.5em;
}
header#navbar > nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header#navbar.fixed {
  position: fixed;
  padding-top: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.45);
}
header#navbar .menu--label {
  display: none;
}
header#navbar #block-tpp-main-menu {
  padding-left: 1em;
}
@media all and (max-width: 77rem) and (min-width: 62rem) {
  header#navbar {
    font-size: 0.85em;
  }
  header#navbar #block-tpp-main-menu {
    padding-left: 1.4em;
  }
}
@media (max-width: 62rem) {
  .user-logged-in #navbar.fixed {
    top: 0;
  }
  #toolbar-administration {
    display: none;
  }
  body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0!important;
  }
  header#navbar {
    position: fixed;
  }
  header#navbar > #block-tpp-site-branding img {
    width: calc((4.5rem - 0.75rem) * 22 / 6);
    max-height: 4.5rem;
  }
  header#navbar > #block-tpp-site-branding::after {
    content: none;
    display: none;
  }
  header#navbar .language-switcher-language-url {
    display: none;
  }
  header#navbar .menu--label {
    display: block;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    bottom: 0;
    right: 2em;
    position: relative;
    color: #C72240;
  }
}
@media (max-width: 26rem) {
  header#navbar > #block-tpp-site-branding {
    padding-left: 0;
  }
  header#navbar > #block-tpp-site-branding img {
    width: calc((4.5rem - 1.25rem) * 22 / 7);
  }
}
/*=====================  Main menu styling =============================== */
.icon--burger {
  display: none;
}
.menu--main {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  position: relative;
  background: transparent;
  font-size: 1.0625em;
}
.menu__item--main {
  list-style: none;
  min-width: 6.25em;
  position: relative;
  display: flex;
  align-items: center;
}
.menu__link--main {
  color: #064333;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.825em;
  font-weight: 600;
  white-space: nowrap;
}
.menu__link--main span {
  transition: border-top-color 200ms ease-in;
  border-top-color: transparent;
}
.menu__link--main:hover,
.menu__link--main.is-active {
  text-decoration: none;
}
.menu__item--parent {
  background-color: #57C3F1;
  transition: all 100ms ease-in;
  width: 12em;
}
.menu__item--parent > .menu__link {
  letter-spacing: 0.07em;
}
.menu__item--parent:first-child {
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}
.menu__item--parent:first-child > .menu__link {
  padding-left: 1.2em;
}
.menu__item--parent:first-child:hover {
  border-bottom-left-radius: 0;
}
.menu__item--parent:last-child {
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
}
.menu__item--parent:last-child > .menu__link {
  padding-right: 1em;
  padding-left: 1.35em;
}
.menu__item--parent:last-child > .menu__link::after {
  display: none;
}
.menu__item--parent:last-child:hover {
  border-bottom-right-radius: 0;
}
.menu__item--parent:nth-child(2n+1) {
  background-color: #C72240;
}
.menu__item--parent > .menu__link {
  text-transform: uppercase;
  padding-right: 0.7em;
  height: 3.25em;
  padding-left: 1.5em;
}
.menu__item--parent > .menu__link::after {
  position: absolute;
  content: '';
  display: block;
  height: 0;
  width: 0;
  top: 0;
  right: -0.79em;
  border-left: 0.8em solid #C72240;
  border-bottom: 3.25em solid transparent;
  z-index: 1;
}
.menu__link--main.menu__link--parent > .menu__arrow {
  display: none;
}
.menu__item--main.menu__item--parent {
  position: relative;
  font-size: 1.2em;
}
.menu__item--main.menu__item--parent > ul {
  display: block;
  overflow: hidden;
  max-height: 0;
  width: 12em;
  opacity: 0;
  background-color: white;
  top: 100%;
  padding: 0;
  z-index: 29;
  position: absolute;
  transition: opacity 400ms ease;
  box-shadow: 0 0.375em 0.375em rgba(0, 0, 0, 0.25);
}
.menu__item--parent:first-child > .menu--main.menu--child > .menu__item > .menu__link {
  color: #C72240;
}
.menu__item--parent:first-child > .menu--main.menu--child > .menu__item:hover > .menu__link {
  color: white;
  background-color: #C72240;
}
.menu--main.menu--child > .menu__item {
  list-style: none;
}
.menu--main.menu--child > .menu__item > .menu__link {
  display: table;
  padding: 0.75em 0.5em 0.75em 2.5em;
  text-align: left;
  color: #57C3F1;
  font-size: 1.1em;
}
.menu--main.menu--child > .menu__item:hover > .menu__link {
  color: white;
  background-color: #57C3F1;
}
.menu--main.menu--child > .menu__item:hover > .menu__link::before {
  filter: brightness(0) invert(1);
}
.menu--main.menu--child > .menu__item--last > .menu__link {
  border-bottom: 0 solid #eee;
}
.menu__item--main.menu__item--parent:hover > .menu--child {
  opacity: 1;
  max-height: 90em;
}
@media (max-width: 62rem) {
  .menu__overlay.navbar--opened {
    opacity: 1;
    height: 100vh;
  }
  .menu__item--main {
    display: block;
  }
  header#navbar {
    height: 4.5rem;
    display: block;
  }
  header#navbar nav#block-tpp-main-menu {
    position: absolute;
    right: -28em;
    top: 4.5rem;
    width: 22em;
    max-width: 100vw;
    height: calc(100vh - 4.5rem);
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    padding-top: 1em;
    padding-right: 2em;
    padding-left: 0;
    background-color: white;
    border-top: 0.15em solid #f2f0ee;
    transition: right 300ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  header#navbar .menu--main.menu--parent {
    display: block;
    width: 100%;
    padding-bottom: 1em;
    border-bottom: 0.15em solid #e8e8e8;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  header#navbar .menu__arrow {
    display: none;
  }
  header#navbar .menu__item--parent {
    padding-right: 1em;
    position: relative;
    border-radius: 0;
    padding-right: 0;
    width: auto;
    margin-bottom: 0.5em;
    font-size: 1em;
    background-color: transparent;
  }
  header#navbar .menu__item--parent::after {
    content: '';
    display: block;
    position: absolute;
    right: 0.3em;
    top: 0.5em;
    border-right: 0.1em solid white;
    border-bottom: 0.1em solid white;
    padding: 0.2em;
    opacity: 1;
    transition: opacity 150ms ease-in;
    transform: rotate(45deg);
  }
  header#navbar .menu__item--parent > .menu__link {
    padding-left: 0.75em;
    background-color: #57C3F1;
  }
  header#navbar .menu__item--parent > .menu__link::after {
    display: none;
  }
  header#navbar .menu__item--parent:first-child > .menu__link {
    background-color: #C72240;
  }
  header#navbar .menu__item--parent::after {
    transition: all 150ms ease-in;
    right: 0.75em;
    top: 0.6em;
    border-width: 0.15em;
    padding: 0.25em;
  }
  header#navbar .menu__link--main {
    display: block;
    text-align: left;
    white-space: nowrap;
    padding: 0.5em 0.5em;
    overflow: hidden;
  }
  header#navbar .menu__link--main:hover > .link__title,
  header#navbar .menu__link--main.is-active > .link__title {
    border-top: none;
    text-decoration: none;
  }
  header#navbar .menu__link--main.menu__link--parent {
    height: auto;
  }
  header#navbar ul.menu--child {
    max-height: 1px;
    width: 100%;
    position: relative;
    opacity: 0;
    padding-left: 0.5em;
    margin-bottom: 0;
    padding-top: 0;
    box-shadow: none;
    transition: all 150ms ease-in;
  }
  header#navbar ul.menu--child .menu__link {
    padding-left: 2.5em;
    padding-top: 0.6em;
    padding-bottom: 0.5em;
    color: #262626;
    display: flex;
    align-items: center;
  }
  header#navbar ul.menu--child .menu__link::before {
    filter: brightness(0);
  }
  header#navbar ul.menu--child .menu__link:hover,
  header#navbar ul.menu--child .menu__link.is-active {
    background-color: white;
    color: #57C3F1;
  }
  header#navbar ul.menu--child .menu__link:hover::before,
  header#navbar ul.menu--child .menu__link.is-active::before {
    filter: none;
  }
  header#navbar ul.menu--child .menu__link .link__title {
    padding-top: 0;
  }
  header#navbar .menu__item--parent:first-child > ul.menu--child .menu__link:hover,
  header#navbar .menu__item--parent:first-child > ul.menu--child .menu__link.is-active {
    color: #C72240;
  }
  header#navbar.navbar--opened nav#block-tpp-main-menu {
    right: 0;
  }
  header#navbar .menu--main .menu__item.submenu--opened::after {
    transform: rotate(-45deg);
  }
  header#navbar .menu--main .menu__item.submenu--opened ul.menu--child {
    opacity: 1;
    max-height: 10em;
    padding-top: 0.5em;
  }
  .icon--burger {
    position: absolute;
    top: calc(50% - 1.25em);
    right: 2.75em;
    display: block;
    z-index: 1060;
    background: transparent;
    border-radius: 1.5em;
    padding: 0.75em 0.5em;
    width: 6.3em;
  }
  .icon--burger::before {
    content: 'menu';
    text-transform: uppercase;
    display: block;
    float: left;
    font-size: 1em;
    color: #C72240;
    font-weight: bold;
    width: 3.5em;
  }
  .icon--burger * {
    transition: all 500ms ease;
  }
  .icon--burger__top,
  .icon--burger__center,
  .icon--burger__bottom {
    display: block;
    width: 1.8em;
    height: 0.2em;
    background: #C72240;
    position: absolute;
    top: 0.75em;
    right: 0.5em;
  }
  .icon--burger__center {
    top: 1.242em;
    opacity: 1;
  }
  .icon--burger__bottom {
    top: 1.734em;
  }
  .navbar--opened .icon--burger .icon--burger__center {
    opacity: 0;
  }
  .navbar--opened .icon--burger .icon--burger__top {
    transform: rotate(45deg);
    top: 1.35em;
  }
  .navbar--opened .icon--burger .icon--burger__bottom {
    transform: rotate(-45deg);
    top: 1.35em;
  }
}
@media all and (max-width: 23.5rem) {
  .icon--burger {
    right: 1.75em;
  }
}
ul.menu--account {
  display: flex;
  color: #f2f0ee;
  font-size: 1.0625em;
}
ul.menu--account > li {
  margin: 0.5em;
}
ul.menu--account a.menu__link {
  text-transform: uppercase;
  text-align: center;
  padding: 0.925em 1em 0.725em;
  white-space: nowrap;
  font-weight: 600;
}
@media all and (max-width: 62rem) {
  header#navbar #block-tpp-account-menu {
    position: absolute;
    right: -28em;
    top: 15em;
    width: 22em;
    max-width: 100vw;
    justify-content: flex-start;
    transition: right 300ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  header#navbar.navbar--opened #block-tpp-account-menu {
    right: 0;
  }
  ul.menu--account {
    flex-direction: column;
  }
}
/*================================ Login/register links =================== */
a.menu__link--account[href="/user/login"],
a.menu__link--program[href="/user/login"],
a.button[href="/user/login"],
a.menu__link--account[href="/user"],
a.menu__link--program[href="/user"],
a.button[href="/user"] {
  color: #f2f0ee;
  background: #064333;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
a.menu__link--account[href="/user/login"]:hover,
a.menu__link--program[href="/user/login"]:hover,
a.button[href="/user/login"]:hover,
a.menu__link--account[href="/user"]:hover,
a.menu__link--program[href="/user"]:hover,
a.button[href="/user"]:hover,
a.menu__link--account[href="/user/login"]:active,
a.menu__link--program[href="/user/login"]:active,
a.button[href="/user/login"]:active,
a.menu__link--account[href="/user"]:active,
a.menu__link--program[href="/user"]:active,
a.button[href="/user"]:active,
a.menu__link--account[href="/user/login"]:focus,
a.menu__link--program[href="/user/login"]:focus,
a.button[href="/user/login"]:focus,
a.menu__link--account[href="/user"]:focus,
a.menu__link--program[href="/user"]:focus,
a.button[href="/user"]:focus {
  border: none;
  text-decoration: none;
}
a.menu__link--account[href="/user/login"]:hover,
a.menu__link--program[href="/user/login"]:hover,
a.button[href="/user/login"]:hover,
a.menu__link--account[href="/user"]:hover,
a.menu__link--program[href="/user"]:hover,
a.button[href="/user"]:hover,
a.menu__link--account[href="/user/login"]:active,
a.menu__link--program[href="/user/login"]:active,
a.button[href="/user/login"]:active,
a.menu__link--account[href="/user"]:active,
a.menu__link--program[href="/user"]:active,
a.button[href="/user"]:active,
a.menu__link--account[href="/user/login"]:focus,
a.menu__link--program[href="/user/login"]:focus,
a.button[href="/user/login"]:focus,
a.menu__link--account[href="/user"]:focus,
a.menu__link--program[href="/user"]:focus,
a.button[href="/user"]:focus {
  color: #f2f0ee;
  background-color: #05382b;
}
a.menu__link--account[href="/user/register"],
a.menu__link--program[href="/user/register"],
a.button[href="/user/register"],
a.menu__link--account[href="/user/logout"],
a.menu__link--program[href="/user/logout"],
a.button[href="/user/logout"] {
  color: #f2f0ee;
  background: #C72240;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
a.menu__link--account[href="/user/register"]:hover,
a.menu__link--program[href="/user/register"]:hover,
a.button[href="/user/register"]:hover,
a.menu__link--account[href="/user/logout"]:hover,
a.menu__link--program[href="/user/logout"]:hover,
a.button[href="/user/logout"]:hover,
a.menu__link--account[href="/user/register"]:active,
a.menu__link--program[href="/user/register"]:active,
a.button[href="/user/register"]:active,
a.menu__link--account[href="/user/logout"]:active,
a.menu__link--program[href="/user/logout"]:active,
a.button[href="/user/logout"]:active,
a.menu__link--account[href="/user/register"]:focus,
a.menu__link--program[href="/user/register"]:focus,
a.button[href="/user/register"]:focus,
a.menu__link--account[href="/user/logout"]:focus,
a.menu__link--program[href="/user/logout"]:focus,
a.button[href="/user/logout"]:focus {
  border: none;
  text-decoration: none;
}
a.menu__link--account[href="/user/register"]:hover,
a.menu__link--program[href="/user/register"]:hover,
a.button[href="/user/register"]:hover,
a.menu__link--account[href="/user/logout"]:hover,
a.menu__link--program[href="/user/logout"]:hover,
a.button[href="/user/logout"]:hover,
a.menu__link--account[href="/user/register"]:active,
a.menu__link--program[href="/user/register"]:active,
a.button[href="/user/register"]:active,
a.menu__link--account[href="/user/logout"]:active,
a.menu__link--program[href="/user/logout"]:active,
a.button[href="/user/logout"]:active,
a.menu__link--account[href="/user/register"]:focus,
a.menu__link--program[href="/user/register"]:focus,
a.button[href="/user/register"]:focus,
a.menu__link--account[href="/user/logout"]:focus,
a.menu__link--program[href="/user/logout"]:focus,
a.button[href="/user/logout"]:focus {
  color: #f2f0ee;
  background-color: #9b1b32;
}
/*========================== User balance ==================================*/
.user_balance {
  display: grid;
  align-items: center;
  justify-items: left;
  grid-template-columns: 1fr 10em;
  grid-row-gap: 0.75em;
  z-index: 10;
  text-align: left;
}
.user_balance dt {
  margin: 0.75em;
}
.user_balance dt::after {
  content: ':';
  position: relative;
  display: inline;
  right: -0.1825em;
}
.user_balance dt:first-child {
  font-weight: 900;
}
.user_balance dd {
  margin: 0.75em;
  padding: 0.5em 0.75em 0.45em;
}
.user_balance dd:nth-child(2) {
  color: #064333;
  background-color: white;
}
@media (max-width: 50rem) {
  .user_balance dt,
  .user_balance dd {
    margin: 0.5em;
  }
}
/*================================ Page header ============================ */
.page__header {
  background-size: cover;
  background-position: center top;
  font-size: 1.5em;
  padding: 1.75em 2% 2em;
  text-align: center;
  position: relative;
}
.page__header.keg-stripe {
  background-image: url("../images/page_header_background.jpg");
  padding-bottom: 4em;
}
.page__header.keg-white {
  background-image: url("../images/hp_background_pale.jpg");
  padding-bottom: 4em;
}
.page__header.wood {
  background-image: url("../images/wood_bg.jpg");
  padding-bottom: 4em;
}
.page__header.wood::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0.5em;
  background-image: url("../images/prazdroj_P_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 14em;
  height: calc(100% - 1em);
}
.page__header h1 {
  margin-top: 0;
  margin-bottom: 0.25em;
  font-size: 3em;
}
.page__header > .subtitle {
  font-size: 1.5em;
  max-width: 12em;
  margin-left: auto;
  margin-right: auto;
}
.page__header p {
  max-width: 23em;
  margin-left: auto;
  margin-right: auto;
}
.page__header > .links {
  font-size: 0.7625em;
  margin-top: 0.75em;
}
.page__header > .links > a {
  margin: 0.5em 1.5em;
}
.page__header .user_balance {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  grid-template-columns: 1fr calc(50% - 3em);
  justify-items: left;
}
.page__header .user_balance > dt:first-child {
  justify-self: right;
}
@media (max-width: 50rem) {
  .page__header {
    font-size: 1.3em;
  }
  .page__header h1 {
    font-size: 2.5em;
  }
  .page__header .user_balance {
    display: flex;
    justify-content: center;
  }
  .page__header.wood::after {
    opacity: 0.4;
  }
}
/*================================ edit-link ============================== */
.edit-link {
  position: absolute;
  top: -13px;
  right: -13px;
  border-radius: 15px;
  width: 26px;
  height: 26px;
  background: #fff;
  text-indent: -9999px;
  overflow: hidden;
  border: 2px solid #aaa;
}
.edit-link:after {
  position: absolute;
  transform: rotate(45deg);
  background: #aaa;
  width: 6px;
  height: 11px;
  left: 9px;
  top: 4px;
  content: '';
}
.edit-link:before {
  position: absolute;
  transform: rotate(45deg);
  content: '';
  top: 14px;
  left: 1px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #aaa;
  border-bottom: 0;
}
.edit-link:hover:after {
  background: #333;
}
.edit-link:hover {
  border-color: #333;
}
.edit-link:hover:before {
  border-top-color: #333;
}
/*================================ login ============================== */
.page--user-login .user-login-form {
  padding: 50px;
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
body[class*="page--user"] form.user-login-form input[type=submit] {
  color: white;
  background: #C09A51;
  padding: 1.1em 2.25em 0.9em;
  border-radius: 3rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0.2em;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
body[class*="page--user"] form.user-login-form input[type=submit]:hover,
body[class*="page--user"] form.user-login-form input[type=submit]:active,
body[class*="page--user"] form.user-login-form input[type=submit]:focus {
  border: none;
  text-decoration: none;
}
body[class*="page--user"] form.user-login-form input[type=submit]:hover,
body[class*="page--user"] form.user-login-form input[type=submit]:active,
body[class*="page--user"] form.user-login-form input[type=submit]:focus {
  background: #a37f3b;
  text-decoration: none;
  font-weight: bold;
  color: white;
}
body[class*="page--user"] form.user-login-form input[type=submit]:hover,
body[class*="page--user"] form.user-login-form input[type=submit]:active,
body[class*="page--user"] form.user-login-form input[type=submit]:focus {
  border: none;
  text-decoration: none;
}
body[class*="page--user"] form.user-login-form input[type=submit]:hover,
body[class*="page--user"] form.user-login-form input[type=submit]:active,
body[class*="page--user"] form.user-login-form input[type=submit]:focus {
  background: #a37f3b;
  text-decoration: none;
  font-weight: bold;
  color: white;
}
.path-user main#content {
  text-align: center;
}
.user-pass-reset,
.user-pass {
  margin-top: 8em;
  font-size: 1.125em;
}
.user-pass-reset .form-actions,
.user-pass .form-actions {
  margin-top: 1.5em;
}
.user-pass-reset .form-actions .button,
.user-pass .form-actions .button {
  background-color: #C72240;
}
.user-pass-reset .form-actions .button:hover,
.user-pass .form-actions .button:hover,
.user-pass-reset .form-actions .button:focus,
.user-pass .form-actions .button:focus,
.user-pass-reset .form-actions .button:active,
.user-pass .form-actions .button:active {
  background-color: #9b1b32;
}
/*================================ admin taby ============================== */
.region--taby {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  max-width: 150px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  border-top-right-radius: 20px;
  border: 1px solid #064333;
  border-left-width: 0;
  border-bottom-width: 0;
}
.region--taby ul {
  margin: 0;
  padding: 10px;
  list-style: none;
}
.region--taby ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.region--taby ul li a {
  display: block;
  padding: 3px;
  color: #064333;
  font-size: 13px;
  text-decoration: none;
}
.region--taby ul li a:hover {
  color: #05382b;
}
.region--taby .contextual {
  display: none;
}
/*================================ Footer ===============================*/
footer.region--footer {
  clear: both;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 20em;
  background-color: #372818;
  color: white;
  padding: 2.75em 2% 4rem;
  background-image: url("../images/chmel_foot.svg");
  background-position-x: 72%;
  background-repeat: no-repeat;
  background-size: 30em;
}
@media (min-width: 86rem) {
  footer.region--footer {
    padding-left: calc(50% - (84rem / 2));
    padding-right: calc(50% - (84rem / 2));
  }
}
footer.region--footer::before {
  content: '';
  display: block;
  position: absolute;
  top: -2.75em;
  left: 3em;
  background-image: url("../images/prazdroj_pecet.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 6.5em;
  height: 6.5em;
}
@media (min-width: 86rem) {
  footer.region--footer::before {
    left: calc(50% - (84rem / 2) + 3em);
  }
}
footer.region--footer [class^="button"],
footer.region--footer a[href="/user/register"] {
  padding: 0.85em 1em 0.65em;
  margin: 0;
  text-transform: uppercase;
}
footer.region--footer > :first-child h2 {
  font-size: 1.5em;
}
footer.region--footer > :first-child p {
  font-size: 1.1em;
}
footer.region--footer > :first-child,
footer.region--footer > :nth-child(2),
footer.region--footer > :nth-child(3),
footer.region--footer > :nth-child(4) {
  min-width: 11em;
  max-width: 17em;
  margin-bottom: 1rem;
}
footer.region--footer > :nth-child(5) {
  width: 100%;
  padding-top: 3.75em;
  padding-bottom: 1.5em;
}
footer.region--footer > :nth-child(5) > ul {
  display: flex;
  justify-content: center;
}
footer.region--footer > :nth-child(5) > ul > li {
  margin: 0.5em;
}
footer.region--footer > :nth-child(5) > ul > li a {
  text-decoration: underline;
}
footer.region--footer > nav {
  padding: 0 1em 1em;
  font-size: 1.1em;
}
footer.region--footer > nav li + li {
  margin-top: 1.25em;
}
footer.region--footer > nav a.menu__link {
  text-decoration: none;
  font-weight: normal;
}
footer.region--footer > nav a.menu__link:not([class^="button"], [href="/user/register"]):hover {
  text-decoration: underline;
}
footer.region--footer .menu__title,
footer.region--footer h2 {
  color: white;
  font-weight: 900;
  font-size: 1.3em;
  line-height: 2;
}
footer.region--footer img.img-left {
  position: absolute;
  bottom: 5em;
  left: 2%;
  width: 12em;
}
@media (min-width: 86rem) {
  footer.region--footer img.img-left {
    left: calc(50% - (84rem / 2));
  }
}
.contact-block {
  font-size: 1.1em;
}
.contact-block ul > li + li {
  margin-top: 1.5em;
}
.copyright {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4rem;
  background-color: #372818;
  display: flex;
  align-items: center;
}
.copyright > * {
  flex-grow: 1;
}
.copyright small {
  display: flex;
  font-weight: normal;
  font-size: 1.1em;
  height: 100%;
  justify-content: center;
  border-top: 0.0625em solid #C09A51;
  align-items: center;
  margin: auto;
  max-width: 84rem;
}
@media all and (max-width: 86rem) {
  .copyright small {
    margin: 0 2%;
  }
}
.copyright p + p {
  margin: 0;
}
@media (max-width: 62rem) {
  footer.region.region--footer img.img-left {
    display: none;
  }
}
@media (max-width: 35rem) {
  footer.region.region--footer {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 4em;
  }
  footer.region.region--footer .tpp-copyright {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    max-width: none;
  }
  footer.region.region--footer .tpp-copyright small {
    flex-direction: column;
    justify-content: center;
    font-size: 1em;
  }
  footer.region.region--footer > :nth-child(5) {
    font-size: 0.9em;
  }
}
.brands-list {
  width: 96%;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2em;
  display: flex;
  justify-content: space-between;
  gap: 1em 1em;
}
.brands-list > li {
  max-width: 9.375em;
}
@media (max-width: 62rem) {
  .brands-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.flex-control-paging {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  bottom: -2em;
}
.flex-control-paging > li > a {
  border-radius: 0;
  width: 1.5em;
  height: 0.2em;
}
.flex-control-paging > li > a.flex-active {
  background-color: #C72240;
  height: 0.3em;
}
.pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  text-align: center;
  margin: 1rem 0;
  font-weight: bold;
  color: #2B2B2B;
}
.pager__item {
  display: inline-block;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.pager__item > a {
  text-transform: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2rem;
  height: 2rem;
  padding-top: 0.2rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  border-radius: 1rem;
  line-height: 1;
}
.pager__item.is-active > a {
  color: #f2f0ee;
  background-color: #064333;
}
.pager__item:hover:not(.is-active) > a {
  color: #064333;
}
.infinite-scroll {
  display: flex;
  justify-content: center;
  max-width: 96%;
  margin: auto;
}
.ico--ball {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  background-position-x: 0;
  background-position-y: 0;
}
.ico--fish {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 0.9625em;
  background-position-x: -1.4em;
  background-position-y: 0;
}
.ico--hunt {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1.25em;
  background-position-x: -2.7em;
  background-position-y: 0;
}
.ico--fire {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1.325em;
  background-position-x: -4.3em;
  background-position-y: 0;
}
.ico--music {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  background-position-x: -5.9875em;
  background-position-y: 0;
}
.ico--book {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1.4em;
  background-position-x: -7.35em;
  background-position-y: 0;
}
.ico--group {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  background-position-x: 0;
  background-position-y: -1.1425em;
}
.ico--prazdroj {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1em;
  background-position-x: -1.36em;
  background-position-y: -1.1425em;
}
.ico--benefit {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 0.995em;
  background-position-x: -2.7em;
  background-position-y: -1.1425em;
}
.ico--phone {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 0.95em;
  background-position-x: -4.05em;
  background-position-y: -1.1425em;
}
.ico--mail {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1.325em;
  background-position-x: -5.35em;
  background-position-y: -1.1425em;
}
.ico--close {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1em;
  background-position-x: -7.0275em;
  background-position-y: -1.1425em;
}
[class^="ico--"].white {
  background-image: url("/themes/custom/tpp/images/spolky_icons_white.svg");
}
[class^="ico--"].green {
  background-image: url("/themes/custom/tpp/images/spolky_icons_green.svg");
}
a.email,
a.phone {
  display: flex;
  align-items: flex-end;
}
a.email::before,
a.phone::before {
  content: '';
  display: block;
  font-size: 1.25em;
  margin-right: 0.5em;
}
a.phone::before {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 0.95em;
  background-position-x: -4.05em;
  background-position-y: -1.1425em;
}
a.email::before {
  display: block;
  width: 1.0625em;
  height: 1em;
  background-image: url("/themes/custom/tpp/images/spolky_icons_ochre.svg");
  background-repeat: no-repeat;
  background-size: 9.275em;
  width: 1.325em;
  background-position-x: -5.35em;
  background-position-y: -1.1425em;
}
.border-l:not(.paragraph--text) {
  border-left: 0.03125rem solid #C72240;
  padding-left: 0.5rem;
}
.border-r:not(.paragraph--text) {
  border-right: 0.03125rem solid #C72240;
  padding-right: 0.5rem;
}
.border-l > .paragraph__content {
  border-left: 0.03125rem solid #C72240;
  padding-left: 0.5rem;
}
.border-r > .paragraph__content {
  border-right: 0.03125rem solid #C72240;
  padding-right: 0.5rem;
}
.cl-red {
  color: #C72240;
}
.cl-footer {
  color: #372818;
}
.cl-dark-red {
  color: #9b1b32;
}
.cl-blue {
  color: #57C3F1;
}
.cl-green {
  color: #064333;
}
.cl-white {
  color: white;
}
.cl-text {
  color: #2B2B2B;
}
.bg-red {
  background-color: #C72240;
}
.bg-footer {
  background-color: #372818;
}
.bg-dark-red {
  background-color: #9b1b32;
}
.bg-blue {
  background-color: #57C3F1;
}
.bg-green {
  background-color: #064333;
}
.bg-white {
  background-color: white;
}
.bg-gray {
  background-color: #fafafa;
}
.bg-gray2 {
  background-color: #f2f0ee;
}
