html {
  box-sizing: border-box;
  font-size: 14px;
  line-height: 26px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul {
  list-style: none;
}

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

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: bold;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
}
body {
  font-family: "Inter", sans-serif;
}

h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
h2 img {
  display: none;
}
@media screen and (min-width: 768px) {
  h2 {
    margin-bottom: 25px;
  }
  h2 img {
    margin-left: 36px;
    display: block;
    max-height: 90px;
  }
}

h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
}

h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
}

a {
  color: inherit;
}

.wrapper {
  width: 100%;
  display: flex;
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 1070px;
  }
}

.label + input[type=text] {
  color: #000;
}

.label {
  display: block;
  color: #C3102E;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
.label--black {
  color: #000;
}
.label--small {
  font-size: 14px;
  line-height: 30px;
}
.label--compact {
  line-height: 20px;
}
.label--group {
  margin-bottom: 18px;
}
.label--italic {
  font-style: italic;
}

input,
textarea {
  border: 1px solid #C3102E;
  font-size: 18px;
  padding: 12px;
  max-width: 100% !important;
}

input {
  width: 296px;
  height: 63px;
  margin-bottom: 25px;
}

textarea {
  width: 665px !important;
  height: 165px !important;
  margin-bottom: 35px;
}
textarea::-webkit-resizer {
  border-color: unset;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  padding-left: 48px;
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  left: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #C3102E;
  background: #ffffff;
}
input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 4px;
  top: 4px;
}
input[type=checkbox]:checked + label::after {
  background-color: #C3102E;
}

input[type=radio] {
  display: none;
}
input[type=radio] + label {
  padding-left: 48px;
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  float: left;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  input[type=radio] + label {
    margin-right: 20px;
  }
}
input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #C3102E;
  border-radius: 50%;
}
input[type=radio] + label::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
}
input[type=radio]:checked + label::after {
  background-color: #C3102E;
}

.submit {
  margin-top: auto;
  padding: 11px 38px;
  background-color: #C3102E;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.submit:hover {
  background-color: rgba(24, 24, 24, 0.81);
}

.btn {
  padding: 11px 38px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  box-shadow: none !important;
}

.btn:hover {
  text-decoration: underline;
}

.btn.btn-primary {
  font-weight: bold;
  color: #FFFFFF;
  background: #000000;
}

.btn.btn-grey {
  font-weight: bold;
  color: #FFFFFF;
  background: #444444;
}

.text-red {
  color: #BA2426 !important;
}

/* FORM */
.form-group {
  margin: 0;
}

.form-group + .form-group {
  margin-top: 10px;
}

.form-group + .form-check {
  margin-top: 19px;
}

.form-group + button[type=submit] {
  margin-top: 40px;
}

.form-control {
  padding: 8px 22px;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
  color: rgba(68, 68, 68, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  background: #FFFFFF;
  transition: background 0.3s ease;
}

select.form-control {
  padding: 8px 17px;
  color: rgba(68, 68, 68, 0.8);
}

.form-group.has-error .form-control {
  background: #E7A8A9;
}

@media screen and (max-width: 768px) {
  form[name=registration] .half:first-child {
    margin-bottom: 30px;
  }
}

.text-danger {
  margin: 0 0 9px;
  font-style: italic;
  color: #BA2426;
}

section.content-register {
  position: relative;
  overflow: hidden;
  margin: 60px 0 40px 0;
}
section.content-register form, section.content-register .form-success {
  padding: 32px;
  background: #C3102E;
}
section.content-register form a, section.content-register .form-success a {
  color: #ffffff;
  text-decoration: underline;
}
section.content-register form a:hover, section.content-register form a:focus, section.content-register .form-success a:hover, section.content-register .form-success a:focus {
  color: #ffffff;
  text-decoration: none;
}
section.content-register form p, section.content-register .form-success p {
  color: #ffffff;
}
section.content-register .text-danger {
  color: #ffffff !important;
}
section.content-register .form-check {
  color: #FFFFFF;
}

section.content-register .section-title {
  color: #000000;
  margin-bottom: 24px;
}

section.content-register .section-subtitle {
  color: #000000;
  margin-bottom: 39px;
  text-transform: none;
}

section.content-register p:not(.text-danger) {
  font-size: 18px;
  line-height: 30px;
}

section.content-register .col-text,
section.content-register .col-form {
  padding: 110px 0 100px;
}

section.content-register .col-form {
  padding-left: 80px;
}

section.content-register .col-text::before,
section.content-register .col-form::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #C3102E;
  z-index: -1;
}

section.content-register .col-form::before {
  left: 0;
  right: auto;
  background: rgba(24, 24, 24, 0.81);
}

section.content-register .align-items-end {
  position: relative;
}

section.content-register #form-parent .-success {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

section.content-register #form-parent.-has_success .-success {
  visibility: visible;
  opacity: 1;
}

/* SECTION: REGISTER-FORMS */
section.content-register-forms {
  margin: 40px 0;
  color: #FFFFFF;
  text-align: center;
}

section.content-register-forms .section-title {
  text-align: left;
  margin-bottom: 90px;
}

section.content-register-forms .section-subtitle {
  margin: 10px 0 26px;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}

section.content-register-forms .btn {
  margin-top: 50px;
  text-transform: uppercase;
}

section.content-register-forms .row > div {
  padding: 85px 70px 40px;
  text-align: center;
}

section.content-register-forms .row > div.col-register-1 {
  background: #C3102E;
}

section.content-register-forms .row > div.col-register-2 {
  background: rgba(24, 24, 24, 0.81);
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
  font-family: "Metropolis", sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  margin: 10px 0 10px 0;
}
.page-content h2 {
  font-size: 28px;
  line-height: 40px;
}
.page-content h3 {
  font-size: 24px;
  line-height: 32px;
}
.page-content h4 {
  font-size: 20px;
  line-height: 28px;
}
.page-content p {
  margin: 0 0 10px 0;
}

section.content-intro {
  margin-bottom: 4em;
}

section.content-intro.indent-top {
  padding-top: 8.25em;
}

header {
  width: 100%;
  padding: 22px 0 15px;
  transition: all 0.3s ease;
  background: #FFFFFF;
  z-index: 99;
}

@media (min-width: 992px) {
  header .container {
    max-width: 1150px;
  }
}
header #menu {
  position: relative;
  text-align: right;
  font-size: 0;
  line-height: 0;
}

header #menu > li {
  display: inline-block;
}

header #menu > li + li {
  margin-left: 26px;
}

header #menu > li > a {
  display: block;
  padding: 2px 0;
  font-size: 14px;
  line-height: 20px;
  color: #444444;
  border-bottom: 1px solid #FFFFFF;
  text-decoration: none;
  transition: font-weight 0.3s ease, border-color 0.3s ease;
}

header #menu > li.current > a {
  font-weight: bold;
  border-color: #444444;
}

header #menu > li.menu--list {
  display: inline-block;
}
@media (max-width: 991px) {
  header #menu > li.menu--list {
    display: none;
  }
}

header #menu > li.menu--list--resp {
  display: none;
}
@media (max-width: 991px) {
  header #menu > li.menu--list--resp {
    display: block;
  }
}

header #menu > li > a:hover {
  border-color: #444444;
}

header #menu > li.outline > a {
  padding: 12px 20px;
  color: #BA2426;
  border: 1px solid #BA2426;
}

header #menu > li.outline > a:hover {
  text-decoration: underline;
}

header #menu > li.language {
  position: absolute;
  display: block;
  right: 8.5px;
  top: -30px;
  width: auto;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  color: #444444;
  transition: all 0.3s ease;
}

header #menu > li.language > a {
  display: inline-block;
  color: inherit;
  border: 0;
  padding: 0;
}

header #menu > li.language > a.active {
  opacity: 0.32;
}

header #menu > li.language > a:hover {
  text-decoration: underline;
}

header.fixed {
  position: fixed;
  padding: 15px 0;
}

header #logo > img {
  height: 65px;
  transition: height 0.3s ease;
}

header.fixed #logo > img {
  height: 60px;
}

header.fixed #menu > li.language {
  top: -22px;
}

/* RESPONSIVE: HEADER */
@media (max-width: 991px) {
  header {
    padding: 15px 0 15px !important;
  }
  header .row,
  header .row > div {
    position: static;
  }
  header #logo {
    display: inline-block;
    position: relative;
    z-index: 100;
  }
  header #logo > img {
    height: 55px !important;
  }
  header #menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 127px 0 15px;
    background: #444444;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    top: -100%;
    transition: visibility 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  }
  header #menu > li {
    display: block;
  }
  header #menu > li + li {
    margin: 21px 0 0;
  }
  header #menu > li > a {
    border: 0 !important;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    padding: 5px 8.5px !important;
    text-align: center;
    color: #FFFFFF !important;
    font-weight: 400 !important;
  }
  header #menu > li > a:hover {
    text-decoration: underline;
  }
  header #menu > li.language {
    position: relative;
    text-align: center;
    width: 100%;
    right: auto;
    top: auto;
    padding-bottom: 15px;
    color: #FFFFFF;
  }
  header .btn-menu {
    position: relative;
    display: block !important;
    width: 27px;
    padding: 0;
    background: none !important;
    z-index: 100;
  }
  header .btn-menu > span {
    display: block;
    border-radius: 1.5px;
    border-top: 3px solid #333333;
  }
  header .btn-menu > span + span {
    margin-top: 5px;
  }
  body.-menu_toggled header #menu {
    top: 0;
    visibility: visible;
    opacity: 1;
    /*z-index: 100;*/
  }
  body.-menu_toggled header .btn-menu > span {
    border-color: #FFFFFF;
  }
}
@media screen and (max-width: 768px) {
  #menu {
    display: none;
  }
}
#menu .menu {
  margin: 30px auto 60px auto;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #menu .menu {
    margin: 5px auto 15px auto;
    order: 2;
  }
}
#menu .menu__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #menu .menu__list {
    flex-wrap: wrap;
  }
  #menu .menu__list li {
    margin: 0 16px 8px 0;
  }
}
#menu .menu__link {
  display: block;
  text-decoration: none;
  color: #C3102E;
  text-align: center;
  font-size: 24px;
  padding: 0 10px;
  font-weight: bold;
}
#menu .menu__link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #menu .menu__link {
    font-size: 14px;
    padding: 0 26px;
  }
}
#menu .logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #menu .logo {
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
    order: 1;
  }
}
#menu .logo div.logo__solo {
  text-align: left;
  flex: 0 1 auto;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  #menu .logo div.logo__solo {
    text-align: center;
    margin: 16px 0 16px 0;
    align-self: center;
  }
}
@media screen and (min-width: 768px) {
  #menu .logo div.logo__solo {
    position: static;
  }
}
#menu .logo div.logo__solo .logo__img {
  margin-right: 8px;
  width: 48px;
}
@media screen and (min-width: 768px) {
  #menu .logo div.logo__solo .logo__img {
    width: auto;
    margin-right: 58px;
  }
}
#menu .logo div.logo__solo .logo__text {
  color: #C3102E;
  font-weight: bold;
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  #menu .logo div.logo__solo .logo__text {
    font-size: 36px;
    position: relative;
    top: 6px;
  }
}
#menu .logo div.logo__left {
  text-align: left;
  flex: 0 1 30%;
}
#menu .logo div.logo__left img {
  max-width: 200px;
  max-height: 60px;
}
@media screen and (max-width: 768px) {
  #menu .logo div.logo__left {
    text-align: center;
    flex: 0 0 30%;
    order: 1;
  }
  #menu .logo div.logo__left img {
    max-width: 80%;
    max-height: 45px;
  }
}
#menu .logo div.logo__center {
  text-align: center;
  flex: 0 1 100%;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  #menu .logo div.logo__center {
    flex: 0 1 33%;
    order: 2;
    margin: 26px 0 0 0;
    position: relative;
    top: -10px;
  }
}
#menu .logo div.logo__center > a {
  text-decoration: none;
}
#menu .logo div.logo__center > a:hover, #menu .logo div.logo__center > a:focus {
  text-decoration: none;
}
#menu .logo div.logo__center img {
  display: block;
  margin: 0 auto;
}
#menu .logo div.logo__center .logo__text {
  display: block;
  font-size: 36px;
  line-height: 26px;
  text-transform: uppercase;
  margin: 16px 0 0 0;
  color: #C3102E;
  font-weight: bold;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  #menu .logo div.logo__center .logo__text {
    font-size: 14px;
    line-height: 14px;
    margin: 4px 0 0 0;
  }
}
#menu .logo div.logo__right {
  text-align: right;
  flex: 0 1 30%;
}
#menu .logo div.logo__right img {
  max-width: 200px;
  max-height: 60px;
}
@media screen and (max-width: 768px) {
  #menu .logo div.logo__right {
    text-align: center;
    flex: 0 0 30%;
    order: 3;
  }
  #menu .logo div.logo__right img {
    max-width: 80%;
    max-height: 45px;
  }
}
#menu .logo > span.logo__img {
  margin-right: 8px;
  width: 48px;
}
@media screen and (min-width: 768px) {
  #menu .logo > span.logo__img {
    width: auto;
    margin-right: 58px;
  }
}
#menu .logo > span.logo__text {
  color: #C3102E;
  font-weight: bold;
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  #menu .logo > span.logo__text {
    font-size: 36px;
  }
}
#menu .logo-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #menu .logo-left {
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    order: 1;
  }
}
#menu .logo-left div.logo__solo {
  text-align: left;
  flex: 0 1 auto;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  #menu .logo-left div.logo__solo {
    text-align: center;
    margin: 16px 0 16px 0;
    align-self: center;
  }
}
@media screen and (min-width: 768px) {
  #menu .logo-left div.logo__solo {
    position: static;
  }
}
#menu .logo-left div.logo__solo .logo__img {
  margin-right: 8px;
  width: 48px;
}
@media screen and (min-width: 768px) {
  #menu .logo-left div.logo__solo .logo__img {
    width: auto;
    margin-right: 58px;
  }
}
#menu .logo-left div.logo__solo .logo__text {
  color: #C3102E;
  font-weight: bold;
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  #menu .logo-left div.logo__solo .logo__text {
    font-size: 36px;
    position: relative;
    top: 6px;
  }
}
#menu .logo-left div.logo__right {
  text-align: right;
  flex: 0 1 30%;
}
#menu .logo-left div.logo__right img {
  max-width: 200px;
  max-height: 60px;
}
@media screen and (max-width: 768px) {
  #menu .logo-left div.logo__right {
    text-align: center;
    flex: 0 0 30%;
    order: 3;
  }
  #menu .logo-left div.logo__right img {
    max-width: 80%;
    max-height: 45px;
  }
}
#menu .logo-left > span.logo__img {
  margin-right: 8px;
  width: 48px;
}
@media screen and (min-width: 768px) {
  #menu .logo-left > span.logo__img {
    width: auto;
    margin-right: 58px;
  }
}
#menu .logo-left > span.logo__text {
  color: #C3102E;
  font-weight: bold;
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  #menu .logo-left > span.logo__text {
    font-size: 36px;
  }
}

.hero {
  display: flex;
  gap: 72px;
  margin-bottom: 40px;
  margin-top: 30px;
}
.hero__left, .hero__right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__left, .hero__right {
    width: 50%;
  }
}
.hero__right {
  min-height: 404px;
  max-width: 421px;
  background-image: url(../images/praha/city.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}
.hero__right.img-praha18 {
  background-image: url(../images/praha/radnice_praha18.jpg);
  background-size: contain;
}
.hero__right.img-slezska {
  background-image: url(../images/praha/radnice_slezska.png);
  background-size: contain;
}
.hero__right.img-praha14 {
  background-image: url(../images/praha/radnice_praha14.png);
  background-size: contain;
}
.hero__right.img-prostejov {
  background-image: url(../images/praha/radnice_prostejov.png);
  background-size: contain;
}
.hero__right.img-kolovraty {
  background-image: url(../images/praha/radnice_kolovraty.png);
  background-size: contain;
}
.hero__right.img-as {
  background-image: url(../images/praha/radnice_as.svg);
  background-size: contain;
}
.hero__right.img-sporka {
  background-image: url(../images/praha/radnice_sporka.jpg);
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .hero__right {
    display: block;
    color: #000;
    font-size: 18px;
  }
}
.hero__heading {
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #C3102E;
}
.hero__text, .hero__heading {
  max-width: 479px;
}

.info-banner {
  margin-bottom: 40px;
  display: flex;
}
.info-banner__content {
  flex: 1;
  position: relative;
  padding-left: 120px;
  min-height: 100px;
}
.info-banner__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 81px;
  width: 81px;
  background-image: url('data:image/svg+xml,<svg width="81" height="81" viewBox="0 0 81 81" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40.5589 36.4505C38.3199 36.4505 36.5095 38.2634 36.5095 40.5054V52.6591C36.5095 54.9011 38.3199 56.7139 40.5589 56.7139C42.7979 56.7139 44.6084 54.9011 44.6084 52.6591V40.5054C44.6084 38.2634 42.7979 36.4505 40.5589 36.4505ZM40.5589 24.2968C38.3199 24.2968 36.5095 26.1097 36.5095 28.3516C36.5095 30.5936 38.3199 32.4064 40.5589 32.4064C42.7979 32.4064 44.6084 30.5936 44.6084 28.3516C44.6084 26.1097 42.7979 24.2968 40.5589 24.2968ZM40.5589 0C18.2226 0 0.11784 18.1287 0.11784 40.4946C0.0857009 49.8486 3.32099 58.913 9.25592 66.1323L1.1677 74.2312C0.0214237 75.4005 -0.310675 77.1383 0.321384 78.6508C1.00701 80.1418 2.52824 81.0644 4.1673 81H40.5696C62.906 81 81.0107 62.8713 81.0107 40.5054C81.0107 18.1394 62.8953 0 40.5589 0ZM40.5589 72.8903H13.9053L17.6655 69.1251C18.4368 68.3635 18.8761 67.3337 18.8761 66.2503C18.8654 65.1776 18.4261 64.1585 17.6655 63.4184C5.02433 50.7711 5.01362 30.261 17.6441 17.6031C30.2746 4.94517 50.7576 4.93444 63.3988 17.5816C76.0399 30.2288 76.0507 50.739 63.4202 63.3969C57.3567 69.4791 49.1292 72.8903 40.5589 72.9011V72.8903Z" fill="%23BA2426"/></svg>');
  margin-right: 30px;
}
.info-banner__content h3 {
  font-size: 22px;
  line-height: 1.3;
  color: #000;
}
.info-banner__content h4 {
  font-size: 16px;
  font-weight: normal;
}
.info-banner__heading {
  font-weight: 600px;
  font-size: 22px;
  margin-bottom: 8px;
}

.registration {
  display: flex;
  flex-flow: column;
  margin-bottom: 40px;
  padding: 0;
  width: 100vw;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .registration {
    flex-flow: row;
    margin-right: auto;
    margin-left: auto;
  }
}
.registration__half {
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 85px 20px 40px;
  min-height: 280px;
  width: 50%;
  margin: 0 25px;
}
@media screen and (max-width: 768px) {
  .registration__half {
    margin: 15px;
    width: calc(100% - 30px);
  }
}
.registration__half--left {
  background: #fff;
  border: 1px solid #C3102E;
}
.registration__half--right {
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.81);
}
.registration__illustration {
  margin-bottom: 15px;
}
.registration__heading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 25px;
}
.registration__text {
  max-width: 369px;
  text-align: center;
}
.registration__button {
  margin-top: auto;
  padding: 11px 38px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s;
}
.registration__button:hover {
  background-color: rgba(24, 24, 24, 0.81);
}

.map {
  display: flex;
  margin: 80px auto;
}
.map__content {
  width: 50%;
}
@media (max-width: 768px) {
  .map__content {
    width: 100%;
  }
}
.map__text {
  margin-bottom: 38px;
}
.map__text a {
  color: #C3102E;
}
.map__text a:hover, .map__text a:focus {
  text-decoration: underline;
}
.map__map {
  width: 525px;
}
@media (max-width: 768px) {
  .map__map {
    display: none;
  }
}

.table-shops {
  border-collapse: collapse;
  border: 1px solid #eee;
  width: 100%;
  margin: 30px 0 50px 0;
}
.table-shops tr {
  border-bottom: 1px solid #eee;
}
.table-shops th, .table-shops td {
  padding: 10px;
}

#btnCenterMap {
  display: block;
  padding: 12px 20px;
  color: #BA2426;
  border: 1px solid #BA2426;
  margin-top: 10px;
  text-align: center;
}

.current-numbers {
  flex-flow: column;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .current-numbers {
    margin-bottom: 100px;
  }
}
.current-numbers__heading {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .current-numbers__heading {
    margin-bottom: 40px;
  }
}
.current-numbers__card {
  max-width: none;
  background-color: #fff;
  border: 1px solid #C3102E;
  width: 100%;
}
.current-numbers__card__content {
  padding: 44px 60px 31px;
  text-align: center;
  color: #C3102E;
  font-size: 24px;
  line-height: 1.3;
}
.current-numbers__card__heading {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 18px;
}
.current-numbers__card__amount {
  white-space: nowrap;
  font-size: 32px;
  line-height: 38px;
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
}
@media screen and (min-width: 768px) {
  .current-numbers__card__amount {
    font-size: 48px;
  }
}
.current-numbers__card__text {
  margin-bottom: 30px;
}

#cc-main {
  background: transparent;
  color: var(--cc-primary-color);
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  position: fixed;
  z-index: var(--cc-z-index);
}

#cc-main :after, #cc-main :before, #cc-main a, #cc-main button, #cc-main div, #cc-main h2, #cc-main input, #cc-main p, #cc-main span {
  all: unset;
  box-sizing: border-box;
}

#cc-main .pm__badge, #cc-main button {
  all: initial;
  box-sizing: border-box;
  color: unset;
  visibility: unset;
}

#cc-main .pm__badge, #cc-main a, #cc-main button, #cc-main input {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  outline: revert;
  outline-offset: 2px;
  overflow: hidden;
}

#cc-main table, #cc-main tbody, #cc-main td, #cc-main th, #cc-main thead, #cc-main tr {
  all: revert;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-modal-border-radius:.5rem;
  --cc-btn-border-radius:.4rem;
  --cc-modal-transition-duration:.25s;
  --cc-link-color:var(--cc-btn-primary-bg);
  --cc-modal-margin:1rem;
  --cc-z-index:2147483647;
  --cc-bg:#fff;
  --cc-primary-color:#2c2f31;
  --cc-secondary-color:#5e6266;
  --cc-btn-primary-bg:#30363c;
  --cc-btn-primary-color:#fff;
  --cc-btn-primary-border-color:var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg:#000;
  --cc-btn-primary-hover-color:#fff;
  --cc-btn-primary-hover-border-color:var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg:#eaeff2;
  --cc-btn-secondary-color:var(--cc-primary-color);
  --cc-btn-secondary-border-color:var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg:#d4dae0;
  --cc-btn-secondary-hover-color:#000;
  --cc-btn-secondary-hover-border-color:#d4dae0;
  --cc-separator-border-color:#f0f4f7;
  --cc-toggle-on-bg:var(--cc-btn-primary-bg);
  --cc-toggle-off-bg:#667481;
  --cc-toggle-on-knob-bg:#fff;
  --cc-toggle-off-knob-bg:var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color:var(--cc-bg);
  --cc-toggle-disabled-icon-color:var(--cc-bg);
  --cc-toggle-readonly-bg:#d5dee2;
  --cc-toggle-readonly-knob-bg:#fff;
  --cc-toggle-readonly-knob-icon-color:var(--cc-toggle-readonly-bg);
  --cc-section-category-border:var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg:#f0f4f7;
  --cc-cookie-category-block-border:#f0f4f7;
  --cc-cookie-category-block-hover-bg:#e9eff4;
  --cc-cookie-category-block-hover-border:#e9eff4;
  --cc-cookie-category-expanded-block-bg:transparent;
  --cc-cookie-category-expanded-block-hover-bg:#dee4e9;
  --cc-overlay-bg:rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg:var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg:var(--cc-btn-primary-hover-bg);
  --cc-footer-bg:var(--cc-btn-secondary-bg);
  --cc-footer-color:var(--cc-secondary-color);
  --cc-footer-border-color:#e4eaed;
  --cc-pm-toggle-border-radius:4em;
}

#cc-main.cc--rtl {
  direction: rtl;
}

#cc-main .cm__title, #cc-main a, #cc-main b, #cc-main em, #cc-main strong {
  font-weight: 600;
}

#cc-main button > span {
  pointer-events: none;
}

#cc-main .cc__link, #cc-main a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  font-weight: 600;
  position: relative;
  transition: background-size 0.25s, color 0.25s ease;
}

#cc-main .cc__link:hover, #cc-main a:hover {
  background-size: 100% 1px;
  color: var(--cc-primary-color);
}

#cc-main .cc__link {
  color: var(--cc-link-color);
}

#cc-main .cm__desc, #cc-main .pm__body {
  overscroll-behavior: auto contain;
  scrollbar-width: thin;
}

@media screen and (min-width: 640px) {
  #cc-main ::-webkit-scrollbar, #cc-main ::-webkit-scrollbar-thumb, #cc-main ::-webkit-scrollbar-track {
    all: revert;
  }
  #cc-main ::-webkit-scrollbar-thumb {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: var(--cc-toggle-readonly-bg);
    border: 0.25rem solid var(--cc-bg);
    border-radius: 1rem;
  }
  #cc-main ::-webkit-scrollbar-thumb:hover {
    background: var(--cc-toggle-off-bg);
  }
  #cc-main ::-webkit-scrollbar {
    background: transparent;
    width: 12px;
  }
}
html.disable--interaction.show--consent, html.disable--interaction.show--consent body {
  height: auto !important;
  overflow: hidden !important;
}

@media (prefers-reduced-motion) {
  #cc-main {
    --cc-modal-transition-duration:0s;
  }
}
.cc--darkmode {
  --cc-bg:#161a1c;
  --cc-primary-color:#ebf3f6;
  --cc-secondary-color:#aebbc5;
  --cc-btn-primary-bg:#c2d0e0;
  --cc-btn-primary-color:var(--cc-bg);
  --cc-btn-primary-border-color:var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg:#98a7b6;
  --cc-btn-primary-hover-color:#000;
  --cc-btn-primary-hover-border-color:var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg:#242c31;
  --cc-btn-secondary-color:var(--cc-primary-color);
  --cc-btn-secondary-border-color:var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg:#353d43;
  --cc-btn-secondary-hover-color:#fff;
  --cc-btn-secondary-hover-border-color:var(--cc-btn-secondary-hover-bg);
  --cc-separator-border-color:#222a30;
  --cc-toggle-on-bg:var(--cc-btn-primary-bg);
  --cc-toggle-off-bg:#525f6b;
  --cc-toggle-on-knob-bg:var(--cc-btn-primary-color);
  --cc-toggle-off-knob-bg:var(--cc-btn-primary-color);
  --cc-toggle-enabled-icon-color:var(--cc-btn-primary-color);
  --cc-toggle-disabled-icon-color:var(--cc-btn-primary-color);
  --cc-toggle-readonly-bg:#343e45;
  --cc-toggle-readonly-knob-bg:#5f6b72;
  --cc-toggle-readonly-knob-icon-color:var(--cc-toggle-readonly-bg);
  --cc-section-category-border:#1e2428;
  --cc-cookie-category-block-bg:#1e2428;
  --cc-cookie-category-block-border:var(--cc-section-category-border);
  --cc-cookie-category-block-hover-bg:#242c31;
  --cc-cookie-category-block-hover-border:#232a2f;
  --cc-cookie-category-expanded-block-bg:transparent;
  --cc-cookie-category-expanded-block-hover-bg:var(--cc-toggle-readonly-bg);
  --cc-overlay-bg:rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg:var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg:var(--cc-btn-primary-hover-bg);
  --cc-footer-bg:#0c0e0f;
  --cc-footer-color:var(--cc-secondary-color);
  --cc-footer-border-color:#060809;
}

.cc--darkmode #cc-main {
  color-scheme: dark;
}

#cc-main .cm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: flex;
  flex-direction: column;
  max-width: 24rem;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  transform: translateY(1.6em);
  visibility: hidden;
  z-index: 1;
}

#cc-main .cm--top {
  top: var(--cc-modal-margin);
}

#cc-main .cm--middle {
  top: 50%;
  transform: translateY(calc(-50% + 1.6em));
}

#cc-main .cm--bottom {
  bottom: var(--cc-modal-margin);
}

#cc-main .cm--center {
  left: var(--cc-modal-margin);
  margin: 0 auto;
  right: var(--cc-modal-margin);
  width: unset;
}

#cc-main .cm--left {
  left: var(--cc-modal-margin);
  margin-right: var(--cc-modal-margin);
}

#cc-main .cm--right {
  margin-left: var(--cc-modal-margin);
  right: var(--cc-modal-margin);
}

#cc-main .cm__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

#cc-main .cm__btns, #cc-main .cm__links {
  padding: 1rem 1.3rem;
  width: unset;
}

#cc-main .cm__texts {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 0;
}

#cc-main .cm__desc, #cc-main .cm__title {
  padding: 0 1.3rem;
}

#cc-main .cm__title {
  font-size: 1.05em;
}

#cc-main .cm__title + .cm__desc {
  margin-top: 1.1em;
}

#cc-main .cm__desc {
  color: var(--cc-secondary-color);
  font-size: 0.9em;
  line-height: 1.5;
  max-height: 40vh;
  overflow-x: visible;
  overflow-y: auto;
  padding-bottom: 1em;
}

#cc-main .cm__btns {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#cc-main .cm__btn-group {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
}

#cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
  margin-top: 0.375rem;
}

#cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--inline .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--inline.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-right: 0;
}

#cc-main .cm--wide .cm__btn + .cm__btn, #cc-main .cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--wide.cm--flip .cm__btn + .cm__btn, #cc-main .cm--wide.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn-group--uneven, #cc-main .cm--wide .cm__btn-group--uneven {
  display: flex;
  flex: 1;
  justify-content: space-between;
}

#cc-main .cm--bar:not(.cm--inline).cm--flip .cm__btn-group--uneven, #cc-main .cm--wide.cm--flip .cm__btn-group--uneven {
  flex-direction: row-reverse;
}

#cc-main .cm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  padding: 0.5em 1em;
  text-align: center;
}

#cc-main .cm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}

#cc-main .cm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--close {
  border-radius: 0;
  border-bottom-left-radius: var(--cc-btn-border-radius);
  border-right: none;
  border-top: none;
  display: none;
  font-size: 1em;
  height: 42px;
  min-width: auto !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}

#cc-main .cm__btn--close svg {
  stroke: var(--cc-btn-primary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}

#cc-main .cm__btn--close:hover svg {
  stroke: var(--cc-btn-primary-hover-color);
}

#cc-main .cm__btn--close.cm__btn--secondary svg {
  stroke: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn--close.cm__btn--secondary:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--close + .cm__texts .cm__title {
  padding-right: 3rem;
}

#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm__footer {
  background: var(--cc-footer-bg);
  border-top: 1px solid var(--cc-footer-border-color);
  color: var(--cc-footer-color);
  padding: 0.4em 0 0.5em;
}

#cc-main .cm__links {
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
  padding-top: 0;
}

#cc-main .cm__link-group {
  display: flex;
  flex-direction: row;
  font-size: 0.8em;
  width: 100%;
}

#cc-main .cm__link-group > * + * {
  margin-left: 1.3rem;
}

#cc-main .cm--flip .cm__btn:last-child {
  grid-row: 1;
}

#cc-main .cm--inline.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--box .cm__btn--close {
  display: block;
}

#cc-main .cm--box.cm--flip .cm__btns {
  flex-direction: column-reverse;
}

#cc-main .cm--box.cm--wide {
  max-width: 36em;
}

#cc-main .cm--box.cm--wide .cm__btns {
  flex-direction: row;
  justify-content: space-between;
}

#cc-main .cm--box.cm--wide .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm--box.cm--wide .cm__btn {
  min-width: 120px;
  padding-left: 1.8em;
  padding-right: 1.8em;
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btns {
  flex-direction: row-reverse;
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--cloud {
  max-width: 54em;
  width: unset;
}

#cc-main .cm--cloud .cm__body {
  flex-direction: row;
}

#cc-main .cm--cloud .cm__texts {
  flex: 1;
}

#cc-main .cm--cloud .cm__desc {
  max-height: 9.4em;
}

#cc-main .cm--cloud .cm__btns {
  border-left: 1px solid var(--cc-separator-border-color);
  border-top: none;
  max-width: 23em;
}

#cc-main .cm--cloud .cm__btn-group {
  flex-direction: column;
}

#cc-main .cm--cloud .cm__btn {
  min-width: 19em;
}

#cc-main .cm--cloud.cm--flip .cm__btn-group, #cc-main .cm--cloud.cm--flip .cm__btns {
  flex-direction: column-reverse;
}

#cc-main .cm--cloud.cm--inline .cm__btn-group {
  flex-direction: row;
}

#cc-main .cm--cloud.cm--inline .cm__btn {
  min-width: 10em;
}

#cc-main .cm--cloud.cm--inline.cm--flip .cm__btn-group {
  flex-direction: row-reverse;
}

#cc-main .cm--bar {
  border-radius: 0;
  left: 0;
  margin: 0;
  max-width: unset;
  opacity: 1;
  right: 0;
  transform: translateY(0);
  width: 100vw;
  --cc-modal-transition-duration:.35s;
}

#cc-main .cm--bar.cm--top {
  top: 0;
  transform: translateY(-100%);
}

#cc-main .cm--bar.cm--bottom {
  bottom: 0;
  transform: translateY(100%);
}

#cc-main .cm--bar .cm__body, #cc-main .cm--bar .cm__links {
  margin: 0 auto;
  max-width: 55em;
  width: 100%;
}

#cc-main .cm--bar .cm__body {
  padding: 0.5em 0 0.9em;
}

#cc-main .cm--bar .cm__btns {
  border-top: none;
  flex-direction: row;
  justify-content: space-between;
}

#cc-main .cm--bar .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--bar .cm__btn {
  min-width: 120px;
  padding-left: 2em;
  padding-right: 2em;
}

#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--bar.cm--flip .cm__btns {
  flex-direction: row-reverse;
}

#cc-main .cm--bar.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--bar.cm--inline .cm__body, #cc-main .cm--bar.cm--inline .cm__links {
  max-width: 74em;
}

#cc-main .cm--bar.cm--inline .cm__body {
  flex-direction: row;
  padding: 0;
}

#cc-main .cm--bar.cm--inline .cm__btns {
  flex-direction: column;
  justify-content: center;
  max-width: 23em;
}

#cc-main .cm--bar.cm--inline.cm--flip .cm__btns {
  flex-direction: column-reverse;
}

#cc-main .cc--anim .cm, #cc-main .cc--anim.cm-wrapper:before {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}

#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.disable--interaction #cc-main .cm-wrapper:before {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 0;
}

.show--consent #cc-main .cc--anim .cm {
  opacity: 1;
  transform: translateY(0);
  visibility: visible !important;
}

.show--consent #cc-main .cc--anim .cm--middle {
  transform: translateY(-50%);
}

.show--consent #cc-main .cc--anim .cm--bar {
  transform: translateY(0);
}

.show--consent #cc-main .cc--anim.cm-wrapper:before {
  opacity: 1;
  visibility: visible;
}

#cc-main.cc--rtl .cm__btn--close {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: var(--cc-btn-border-radius);
  left: 0;
  right: unset;
}

#cc-main.cc--rtl .cm__btn--close + .cm__texts .cm__title {
  padding-left: 3rem !important;
  padding-right: 1.3rem;
}

#cc-main.cc--rtl .cm--inline .cm__btn + .cm__btn {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn-group + .cm__btn-group, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar.cm--flip .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .cm__link-group > * + * {
  margin-left: 0;
  margin-right: 1.3rem;
}

@media screen and (max-width: 640px) {
  #cc-main {
    --cc-modal-margin:.5em;
  }
  #cc-main .cm {
    max-width: none !important;
    width: auto !important;
  }
  #cc-main .cm__body {
    flex-direction: column !important;
    padding: 0 !important;
  }
  #cc-main .cm__btns, #cc-main .cm__desc, #cc-main .cm__links, #cc-main .cm__title {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
  #cc-main .cm__btns {
    border-left: none !important;
    border-top: 1px solid var(--cc-separator-border-color) !important;
    flex-direction: column !important;
    max-width: none !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .cm__btn-group {
    display: flex !important;
    flex-direction: column !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn {
    flex: auto !important;
  }
  #cc-main .cm__link-group {
    justify-content: center !important;
  }
  #cc-main .cm--flip .cm__btn-group, #cc-main .cm--flip .cm__btns {
    flex-direction: column-reverse !important;
  }
}
#cc-main .pm-wrapper {
  position: relative;
  z-index: 2;
}

#cc-main .pm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: flex;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  visibility: hidden;
  width: 100%;
  width: unset;
  z-index: 1;
}

#cc-main svg {
  fill: none;
  width: 100%;
}

#cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
  padding: 1em 1.4em;
}

#cc-main .pm__header {
  align-items: center;
  border-bottom: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between;
}

#cc-main .pm__title {
  align-items: center;
  display: flex;
  flex: 1;
  font-weight: 600;
  margin-right: 2em;
}

#cc-main .pm__close-btn {
  background: var(--cc-btn-secondary-bg);
  border: 1px solid var(--cc-btn-secondary-border-color);
  border-radius: var(--cc-btn-border-radius);
  height: 40px;
  position: relative;
  transition: all 0.15s ease;
  width: 40px;
}

#cc-main .pm__close-btn span {
  display: flex;
  height: 100%;
  width: 100%;
}

#cc-main .pm__close-btn svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
  transition: stroke 0.15s ease;
}

#cc-main .pm__close-btn:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
}

#cc-main .pm__close-btn:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}

#cc-main .pm__body {
  flex: 1;
  overflow-y: auto;
  overflow-y: overlay;
}

#cc-main .pm__section, #cc-main .pm__section--toggle {
  border-radius: var(--cc-btn-border-radius);
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
}

#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  border: 1px solid var(--cc-cookie-category-block-border);
  border-radius: var(--cc-btn-border-radius);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  margin-top: 0 !important;
  overflow: hidden;
}

#cc-main .pm__section {
  border: 1px solid var(--cc-separator-border-color);
  padding: 1em;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

#cc-main .pm__section:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}

#cc-main .pm__section:not(:first-child):hover {
  background: var(--cc-cookie-category-block-bg);
  border-color: var(--cc-cookie-category-block-border);
}

#cc-main .pm__section-toggles + .pm__section {
  margin-top: 2em;
}

#cc-main .pm__section--toggle {
  background: var(--cc-cookie-category-block-bg);
  border-top: none;
  margin-bottom: 0.375rem;
}

#cc-main .pm__section--toggle .pm__section-title {
  align-items: center;
  background: var(--cc-cookie-category-block-bg);
  border: 1px solid var(--cc-cookie-category-block-border);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 1.1em 5.4em 1.1em 1.2em;
  position: relative;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  width: 100%;
}

#cc-main .pm__section--toggle .pm__section-title:hover {
  background: var(--cc-cookie-category-block-hover-bg);
  border-color: var(--cc-cookie-category-block-hover-border);
}

#cc-main .pm__section--toggle .pm__section-desc {
  margin-top: 0;
  padding: 1em;
}

#cc-main .pm__section--toggle.is-expanded {
  --cc-cookie-category-block-bg:var(--cc-cookie-category-expanded-block-bg);
  --cc-cookie-category-block-border:var(--cc-cookie-category-expanded-block-hover-bg);
}

#cc-main .pm__section--toggle.is-expanded .pm__section-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
  transform: scale(0.5) rotate(180deg);
}

#cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
  display: flex;
}

#cc-main .pm__section--expandable .pm__section-title {
  cursor: pointer;
  padding-left: 3.4em;
}

#cc-main .pm__section--expandable .pm__section-arrow {
  background: var(--cc-toggle-readonly-bg);
  border-radius: 100%;
  display: flex;
  height: 20px;
  justify-content: center;
  left: 18px;
  pointer-events: none;
  position: absolute;
  width: 20px;
}

#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: var(--cc-btn-secondary-color);
  transform: scale(0.5);
}

#cc-main .pm__section-title-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 0.85em;
}

#cc-main .pm__section-title {
  border-radius: var(--cc-btn-border-radius);
  font-size: 0.95em;
  font-weight: 600;
}

#cc-main .pm__badge {
  align-items: center;
  background: var(--cc-btn-secondary-bg);
  border-radius: 5em;
  color: var(--cc-secondary-color);
  display: flex;
  flex: none;
  font-size: 0.8em;
  font-weight: 600;
  height: 23px;
  justify-content: center;
  margin-left: 1em;
  min-width: 23px;
  overflow: hidden;
  padding: 0 0.6em 1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: auto;
}

#cc-main .pm__service-counter {
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-color);
  padding: 0;
  width: 23px;
}

#cc-main .pm__service-counter[data-counterlabel] {
  padding: 0 0.6em 1px;
  width: auto;
}

#cc-main .section__toggle, #cc-main .section__toggle-wrapper, #cc-main .toggle__icon, #cc-main .toggle__label {
  border-radius: var(--cc-pm-toggle-border-radius);
  height: 23px;
  transform: translateZ(0);
  width: 50px;
}

#cc-main .section__toggle-wrapper {
  cursor: pointer;
  position: absolute;
  right: 18px;
  z-index: 1;
}

#cc-main .toggle-service {
  height: 19px;
  position: relative;
  right: 0;
  width: 42px;
}

#cc-main .toggle-service .section__toggle, #cc-main .toggle-service .toggle__icon, #cc-main .toggle-service .toggle__label {
  height: 19px;
  width: 42px;
}

#cc-main .toggle-service .toggle__icon {
  position: relative;
}

#cc-main .toggle-service .toggle__icon-circle {
  height: 19px;
  width: 19px;
}

#cc-main .toggle-service .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(23px);
}

#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper:after {
  display: none !important;
}

#cc-main .section__toggle {
  border: 0;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
}

#cc-main .section__toggle:disabled {
  cursor: not-allowed;
}

#cc-main .toggle__icon {
  background: var(--cc-toggle-off-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
  display: flex;
  flex-direction: row;
  pointer-events: none;
  position: absolute;
  transition: all 0.25s ease;
}

#cc-main .toggle__icon-circle {
  background: var(--cc-toggle-off-knob-bg);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  box-shadow: 0 1px 2px rgba(24, 32, 3, 0.36);
  display: block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
  width: 23px;
}

#cc-main .toggle__icon-off, #cc-main .toggle__icon-on {
  height: 100%;
  position: absolute;
  transition: opacity 0.15s ease;
  width: 100%;
}

#cc-main .toggle__icon-on {
  opacity: 0;
  transform: rotate(45deg);
}

#cc-main .toggle__icon-on svg {
  stroke: var(--cc-toggle-on-bg);
  transform: scale(0.55) rotate(-45deg);
}

#cc-main .toggle__icon-off {
  opacity: 1;
}

#cc-main .toggle__icon-off svg {
  stroke: var(--cc-toggle-off-bg);
  transform: scale(0.55);
}

#cc-main .section__toggle:checked ~ .toggle__icon {
  background: var(--cc-toggle-on-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-on-bg);
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  background-color: var(--cc-toggle-on-knob-bg);
  transform: translateX(27px);
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-on {
  opacity: 1;
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-off {
  opacity: 0;
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon {
  background: var(--cc-toggle-readonly-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg);
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon .toggle__icon-circle {
  background: var(--cc-toggle-readonly-knob-bg);
  box-shadow: none;
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon svg {
  stroke: var(--cc-toggle-readonly-knob-icon-color);
}

#cc-main .toggle__label {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

#cc-main .pm__section-desc-wrapper {
  color: var(--cc-secondary-color);
  display: flex;
  flex-direction: column;
  font-size: 0.9em;
}

#cc-main .pm__section-desc-wrapper > :not(:last-child) {
  border-bottom: 1px solid var(--cc-cookie-category-block-border);
}

#cc-main .pm__section-services {
  display: flex;
  flex-direction: column;
}

#cc-main .pm__service {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.4em 1.2em;
  position: relative;
  transition: background-color 0.15s ease;
}

#cc-main .pm__service:hover {
  background-color: var(--cc-cookie-category-block-hover-bg);
}

#cc-main .pm__service-header {
  align-items: center;
  display: flex;
  margin-right: 1em;
  width: 100%;
}

#cc-main .pm__service-icon {
  border: 2px solid;
  border-radius: 100%;
  height: 8px;
  margin-left: 6px;
  margin-right: 20px;
  margin-top: 1px;
  min-width: 8px;
}

#cc-main .pm__service-title {
  font-size: 0.95em;
  width: 100%;
  word-break: break-word;
}

#cc-main .pm__section-desc {
  line-height: 1.5em;
}

#cc-main .pm__section-table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

#cc-main .pm__table-caption {
  text-align: left;
}

#cc-main .pm__table-caption, #cc-main .pm__table-head > tr {
  border-bottom: 1px dashed var(--cc-separator-border-color);
  color: var(--cc-primary-color);
  font-weight: 600;
}

#cc-main .pm__table-tr {
  transition: background-color 0.15s ease;
}

#cc-main .pm__table-tr:hover {
  background: var(--cc-cookie-category-block-hover-bg);
}

#cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th {
  padding: 0.625em 0.625em 0.625em 1.2em;
  vertical-align: top;
}

#cc-main .pm__footer {
  border-top: 1px solid var(--cc-separator-border-color);
  display: flex;
  justify-content: space-between;
}

#cc-main .pm__btn-group {
  display: flex;
}

#cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
}

#cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .pm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  flex: auto;
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  min-width: 110px;
  padding: 0.5em 1.5em;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#cc-main .pm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}

#cc-main .pm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .pm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .pm--box {
  height: calc(100% - 2em);
  left: var(--cc-modal-margin);
  margin: 0 auto;
  max-height: 37.5em;
  max-width: 43em;
  right: var(--cc-modal-margin);
  top: 50%;
  transform: translateY(calc(-50% + 1.6em));
}

#cc-main .pm--box.pm--flip .pm__btn-group, #cc-main .pm--box.pm--flip .pm__footer {
  flex-direction: row-reverse;
}

#cc-main .pm--bar {
  border-radius: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: 29em;
  opacity: 1;
  top: 0;
  width: 100%;
  --cc-modal-transition-duration:.35s;
}

#cc-main .pm--bar .pm__section-table, #cc-main .pm--bar .pm__table-body, #cc-main .pm--bar .pm__table-td, #cc-main .pm--bar .pm__table-th, #cc-main .pm--bar .pm__table-tr {
  display: block;
}

#cc-main .pm--bar .pm__table-head {
  display: none;
}

#cc-main .pm--bar .pm__table-caption {
  display: block;
}

#cc-main .pm--bar .pm__table-tr:not(:last-child) {
  border-bottom: 1px solid var(--cc-separator-border-color);
}

#cc-main .pm--bar .pm__table-td {
  display: flex;
  justify-content: space-between;
}

#cc-main .pm--bar .pm__table-td:before {
  color: var(--cc-primary-color);
  content: attr(data-column);
  flex: 1;
  font-weight: 600;
  min-width: 100px;
  overflow: hidden;
  padding-right: 2em;
  text-overflow: ellipsis;
}

#cc-main .pm--bar .pm__table-td > div {
  flex: 3;
}

#cc-main .pm--bar:not(.pm--wide) .pm__body, #cc-main .pm--bar:not(.pm--wide) .pm__footer, #cc-main .pm--bar:not(.pm--wide) .pm__header {
  padding: 1em 1.3em;
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn-group, #cc-main .pm--bar:not(.pm--wide) .pm__footer {
  flex-direction: column;
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin: 0.375rem 0 0;
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__footer {
  flex-direction: column-reverse;
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group + .pm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}

#cc-main .pm--bar:not(.pm--wide) .pm__badge {
  display: none;
}

#cc-main .pm--bar.pm--left {
  left: 0;
  transform: translateX(-100%);
}

#cc-main .pm--bar.pm--right {
  right: 0;
  transform: translateX(100%);
}

#cc-main .pm--bar.pm--wide {
  max-width: 35em;
}

#cc-main .pm--bar.pm--wide .pm__body, #cc-main .pm--bar.pm--wide .pm__footer, #cc-main .pm--bar.pm--wide .pm__header {
  padding: 1em 1.4em;
}

#cc-main .pm--bar.pm--wide.pm--flip .pm__btn-group, #cc-main .pm--bar.pm--wide.pm--flip .pm__footer {
  flex-direction: row-reverse;
}

#cc-main .pm-overlay {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}

#cc-main .cc--anim .pm, #cc-main .cc--anim .pm-overlay {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
}

.show--preferences #cc-main .cc--anim .pm {
  opacity: 1;
  visibility: visible !important;
}

.show--preferences #cc-main .cc--anim .pm--box {
  transform: translateY(-50%);
}

.show--preferences #cc-main .cc--anim .pm--bar {
  transform: translateX(0);
}

.show--preferences #cc-main .cc--anim .pm-overlay {
  opacity: 1;
  visibility: visible;
}

#cc-main.cc--rtl .pm__service-header {
  margin-left: 1em;
  margin-right: 0;
}

#cc-main.cc--rtl .pm__section-arrow {
  left: unset;
  right: 18px;
}

#cc-main.cc--rtl .section__toggle-wrapper {
  left: 18px;
  right: unset;
  transform-origin: left;
}

#cc-main.cc--rtl .toggle-service {
  left: 0;
}

#cc-main.cc--rtl .pm__service-icon {
  margin-left: 20px;
  margin-right: 5px;
}

#cc-main.cc--rtl .pm__section--toggle .pm__section-title {
  padding-left: 5.4em;
  padding-right: 1.2em;
}

#cc-main.cc--rtl .pm__section--expandable .pm__section-title {
  padding-right: 3.4em;
}

#cc-main.cc--rtl .pm__badge {
  margin-left: unset;
  margin-right: 1em;
}

#cc-main.cc--rtl .toggle__icon-circle {
  transform: translateX(27px);
}

#cc-main.cc--rtl .toggle-service .toggle__icon-circle {
  transform: translateX(23px);
}

#cc-main.cc--rtl .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  transform: translateX(0);
}

#cc-main.cc--rtl .pm__table-td, #cc-main.cc--rtl .pm__table-th {
  padding-left: unset;
  padding-right: 1.2em;
  text-align: right;
}

#cc-main.cc--rtl .pm__table-td {
  padding-left: unset;
  padding-right: 1.2em;
}

#cc-main.cc--rtl .pm__table-td:before {
  padding-left: 2em;
  padding-right: unset;
}

#cc-main.cc--rtl .pm__btn + .pm__btn, #cc-main.cc--rtl .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .pm--flip .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin-left: 0;
}

@media screen and (max-width: 640px) {
  #cc-main .pm {
    border-radius: 0;
    bottom: 0;
    height: auto;
    left: 0;
    max-height: 100%;
    max-width: none !important;
    right: 0;
    top: 0;
    transform: translateY(1.6em);
  }
  #cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
    padding: 0.9em !important;
  }
  #cc-main .pm__badge {
    display: none;
  }
  #cc-main .pm__section-table, #cc-main .pm__table-body, #cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th, #cc-main .pm__table-tr {
    display: block;
  }
  #cc-main .pm__table-head {
    display: none;
  }
  #cc-main .pm__table-tr:not(:last-child) {
    border-bottom: 1px solid var(--cc-separator-border-color);
  }
  #cc-main .pm__table-td {
    display: flex;
    justify-content: space-between;
  }
  #cc-main .pm__table-td:before {
    color: var(--cc-primary-color);
    content: attr(data-column);
    flex: 1;
    font-weight: 600;
    min-width: 100px;
    overflow: hidden;
    padding-right: 2em;
    text-overflow: ellipsis;
  }
  #cc-main .pm__table-td > div {
    flex: 3;
  }
  #cc-main .pm__btn-group, #cc-main .pm__footer {
    flex-direction: column !important;
  }
  #cc-main .pm__btn-group {
    display: flex !important;
  }
  #cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .pm--flip .pm__btn-group, #cc-main .pm--flip .pm__footer {
    flex-direction: column-reverse !important;
  }
  .show--preferences #cc-main .cc--anim .pm {
    transform: translateY(0) !important;
  }
}
#cc-main {
  --cc-font-family: "Inter", sans-serif;
  --cc-modal-border-radius: .5rem;
  --cc-btn-border-radius: .4rem;
  --cc-modal-transition-duration: .25s;
  --cc-link-color: var(--cc-btn-primary-bg);
  --cc-modal-margin: 1rem;
  --cc-z-index: 2147483647;
  --cc-bg: #fff;
  --cc-primary-color: #C3102E;
  --cc-secondary-color: #5e6266;
  --cc-btn-primary-bg: #C3102E;
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg: #780418;
  --cc-btn-primary-hover-color: #fff;
  --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg: #d4dae0;
  --cc-btn-secondary-hover-color: #000;
  --cc-btn-secondary-hover-border-color: #d4dae0;
  --cc-separator-border-color: #f0f4f7;
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-toggle-off-bg: #ffdcd8;
  --cc-toggle-on-knob-bg: #fff;
  --cc-toggle-off-knob-bg: var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color: var(--cc-bg);
  --cc-toggle-disabled-icon-color: var(--cc-bg);
  --cc-toggle-readonly-bg: #ffbcb1;
  --cc-toggle-readonly-knob-bg: #fff;
  --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
  --cc-section-category-border: var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg: #fbedec;
  --cc-cookie-category-block-border: #fbedec;
  --cc-cookie-category-block-hover-bg: #fbe2de;
  --cc-cookie-category-block-hover-border: #fbe2de;
  --cc-cookie-category-expanded-block-bg: transparent;
  --cc-cookie-category-expanded-block-hover-bg: #ffdcd8;
  --cc-overlay-bg: rgba(0, 0, 0, .65);
  --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
  --cc-footer-bg: var(--cc-btn-secondary-bg);
  --cc-footer-color: var(--cc-secondary-color);
  --cc-footer-border-color: #ffdcd8;
  --cc-pm-toggle-border-radius: 4em;
}

.emissions {
  flex-flow: column;
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .emissions {
    margin-bottom: 40px;
  }
}
.emissions__text {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .emissions__text {
    margin-bottom: 40px;
  }
}
.emissions__subheading {
  margin-bottom: 2rem;
}
.emissions__schedule {
  display: block;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 44px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .emissions__schedule {
    margin-bottom: 40px;
  }
}
.emissions__schedule__item {
  display: inline-block;
  max-width: 227px;
  position: relative;
  vertical-align: top;
  min-width: 160px;
}
.emissions__schedule__item:first-child {
  text-align: left;
}
.emissions__schedule__item:first-child .emissions__schedule__item__circle {
  float: left;
}
.emissions__schedule__item:first-child .emissions__schedule__item__text {
  text-align: left;
  clear: both;
}
.emissions__schedule__item:last-child {
  text-align: right;
}
.emissions__schedule__item:last-child .emissions__schedule__item__circle {
  float: right;
}
.emissions__schedule__item:last-child .emissions__schedule__item__text {
  text-align: right;
  clear: both;
}
.emissions__schedule__item::after {
  content: "";
  display: block;
  width: 200%;
  height: 1px;
  border: 3px solid #C3102E;
  position: absolute;
  top: 55px;
  left: 125px;
  z-index: -1;
}
.emissions__schedule__item:last-child::after {
  display: none;
}
.emissions__schedule__item__circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #C3102E;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
}
.emissions__schedule__item--active .emissions__schedule__item__circle {
  background-color: rgba(186, 36, 38, 0.52);
}
.emissions__schedule__item__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  min-height: 60px;
  white-space: normal;
  text-align: center;
}
.emissions__schedule__item--passed .emissions__schedule__item__circle {
  background-color: #555454;
}
.emissions__schedule__item--passed::after {
  border-color: #555454;
}
.emissions__parameters {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .emissions__parameters {
    flex-flow: row;
  }
}
@media screen and (max-width: 768px) {
  .emissions__parameters {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .emissions__parameters__group {
    margin-left: 41px;
  }
  .emissions__parameters__group:not(:first-child) {
    margin-left: 75px;
  }
}
.emissions__highlight {
  color: #C3102E;
}
.emissions__box {
  border: 1px solid #C3102E;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .emissions__box {
    padding: 3rem;
  }
}

.how-to-use {
  flex-flow: column;
  margin-bottom: 40px;
}
.how-to-use__content {
  display: flex;
  gap: 15px;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .how-to-use__content {
    gap: 60px;
    flex-flow: row;
  }
}
.how-to-use__section {
  flex: 1 1 100%;
}
.how-to-use ol {
  margin: 0;
  padding-left: 15px;
}
.how-to-use ol li {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 15px;
}

.how-to-use-image {
  background-color: #F0F0F0;
  text-align: center;
  margin: 20px 0 30px 0;
}
.how-to-use-image img {
  max-width: 100%;
}
.how-to-use-image .image-desktop {
  display: inline;
}
@media screen and (max-width: 768px) {
  .how-to-use-image .image-desktop {
    display: none;
  }
}
.how-to-use-image .image-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .how-to-use-image .image-mobile {
    display: inline;
  }
}

.faq {
  flex-flow: column;
  margin-bottom: 60px;
}
.faq--nav {
  margin: 40px 0;
}
.faq--nav--link {
  font-size: 24px;
  display: inline-block;
  padding: 5px 1.5rem;
  margin-right: 1.5rem;
  color: #444444;
  font-weight: 600;
}
.faq--nav--link:hover {
  color: #444444;
  text-decoration: none;
  border-bottom: 2px solid #C3102E;
}
.faq--nav--link__active {
  color: #C3102E;
  border-bottom: 2px solid #C3102E;
}
.faq .question {
  margin-bottom: 22px;
}
.faq .question__heading {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  cursor: pointer;
}
.faq .question__text {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s;
}
.faq .question--open .question__text {
  max-height: 800px;
  padding-top: 22px;
}
.faq .question-mark {
  position: absolute;
}

.divider {
  display: none;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .divider {
    display: block;
  }
}

/* FOOTER */
footer {
  padding: 66px 0 10px;
  margin-top: 12%;
  background: #444444;
}

footer .text-copyright {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  color: #FFFFFF;
}

footer #footer-menu {
  text-align: center;
}

footer #footer-menu,
footer #footer-socials {
  font-size: 0;
  line-height: 0;
  padding-left: 0;
}

footer #footer-socials {
  text-align: center;
  margin-bottom: 4.375em;
  padding-bottom: 2rem;
}
footer #footer-socials ul {
  margin: auto;
}

footer #footer-menu > li,
footer #footer-socials > li {
  display: inline-block;
}

footer #footer-menu > li + li {
  margin-left: 37px;
}

footer #footer-menu > li > a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}

footer #footer-socials > li + li {
  margin-left: 22px;
}

footer #footer-logo {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 4.375em;
  margin-bottom: 1.1em;
}

footer #footer-logo > img {
  width: 103px;
}

footer span.certificate {
  display: inline-block;
  /*width:100%;*/
  padding-top: 42px;
  text-align: left;
}

footer a.certificate {
  display: inline-block;
  width: 200px;
  cursor: pointer;
}

footer a.certificate img, footer a:visited.certificate img {
  width: 55%;
  opacity: 45%;
}

footer a:hover.certificate img, footer a:active.certificate img {
  opacity: 100%;
}

/* RESPONSIVE: FOOTER */
@media (max-width: 991px) {
  footer {
    padding: 39px 0 7px;
  }
  footer #footer-menu > li {
    display: block;
  }
  footer #footer-menu > li + li {
    margin: 14px 0 0;
  }
  footer .text-copyright {
    margin-top: 0;
  }
}
.contact-form {
  margin-bottom: 40px;
  flex-direction: column;
}
.contact-form__label {
  display: block;
  color: #C3102E;
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #C3102E;
  font-size: 18px;
  padding: 12px;
  max-width: 100% !important;
}
.contact-form input {
  width: 296px;
  height: 63px;
  margin-bottom: 25px;
}
.contact-form textarea {
  width: 665px !important;
  height: 165px !important;
  margin-bottom: 35px;
}
.contact-form textarea::-webkit-resizer {
  border-color: unset;
}
.contact-form__submit {
  margin-top: auto;
  padding: 11px 38px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s;
  border: none;
}
.contact-form__submit:hover {
  background-color: rgba(24, 24, 24, 0.81);
}
.contact-form .form-success {
  color: #000000;
  text-align: center;
}
.contact-form .form-success img {
  margin-bottom: 10px;
}

#notifications .notifications {
  flex-direction: column;
  margin-bottom: 40px;
}
#notifications .notifications h2 {
  text-transform: none;
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #notifications .notifications h2 {
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 40px;
  }
}
#notifications .content-wrapper {
  display: flex;
  gap: 10%;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #notifications .content-wrapper {
    flex-wrap: nowrap;
  }
}
#notifications .content-wrapper input {
  width: 100%;
  margin-bottom: 40px;
}
#notifications .content-wrapper input[type=radio] + label {
  margin-top: 15px;
  margin-left: 15px;
  padding-left: 40px;
}
#notifications .content-wrapper .submit {
  font-weight: normal;
}
#notifications .half {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #notifications .half {
    width: 50%;
  }
}
/* SECTION: CONTENT - LISTING SHOP */
section.content-listing_shop {
  position: relative;
  overflow: hidden;
  margin: 10px 0 40px 0;
}

section.content-listing_shop .section-title {
  padding-left: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  section.content-listing_shop .section-title {
    font-size: 27px;
  }
}

section.content-listing_shop .row-listing {
  margin: 0 -20px;
}

section.content-listing_shop .row-listing > div {
  padding: 0 20px;
}

/* ITEM: SHOP */
.item-shop {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
}

.item-shop .-title {
  margin: 0 0 20px;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
}

.item-shop .-map {
  width: 185px;
  height: 140px;
}

.item-shop .-map > iframe {
  width: 100%;
  height: 100%;
}

.item-shop .-address {
  width: 185px;
}

.item-shop p a {
  color: #BA2426;
}

.item-shop .col-text {
  padding-bottom: 40px;
}

.item-shop .col-category {
  position: relative;
  margin: 10px 0 0 0;
}

@media (max-width: 991px) {
  .item-shop.-big {
    padding-bottom: 30px;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .item-shop.-big .-map {
    width: 100%;
  }
  .item-shop .col-text {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .item-shop.-big .col-category {
    top: 0;
    font-size: 10px;
    padding-top: 15px;
  }
}
@media (max-width: 575px) {
  .item-shop {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .item-shop .col-category {
    top: 0;
    font-size: 10px;
    padding-top: 15px;
  }
  .item-shop .-map {
    width: 100%;
    margin-top: 15px;
  }
}
.selers--breadcrumb {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 778px) {
  .selers--breadcrumb {
    flex-wrap: wrap;
  }
}
.selers--breadcrumb ul {
  display: flex;
  margin-bottom: 10px;
}
.selers--breadcrumb ul li::after {
  content: ">";
  padding: 0 0.5rem;
}
.selers--breadcrumb ul li:last-child:after {
  display: none;
}

.selers--download a {
  color: #C3102E;
}
.selers--download a::before {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="10" height="13" viewBox="0 0 10 13" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_5457_10795)"><path d="M9.54321 11.2715C9.54321 11.2715 9.49383 11.2715 9.46914 11.2715H0.407407C0.17284 11.2962 0 11.4937 0 11.7283C0 11.9875 0.209877 12.1974 0.469136 12.1974H9.53086C9.79012 12.1974 10 11.9875 10 11.7283C10 11.4814 9.80247 11.2715 9.54321 11.2715Z" fill="%23BA2426"/><path d="M4.58032 9.95062C4.66673 10.037 4.77785 10.0741 4.9013 10.0741C5.01241 10.0741 5.12352 10.037 5.20994 9.95062L9.25933 6.17284C9.44451 6 9.44451 5.7037 9.25933 5.53086C9.07414 5.35802 8.79019 5.35802 8.60501 5.53086L5.37044 8.55556V0.419753C5.35809 0.185185 5.17291 0 4.93834 0C4.69143 0 4.48155 0.197531 4.4692 0.444444C4.4692 0.444444 4.4692 0.444444 4.4692 0.45679V8.64198L1.23464 5.48148C1.02476 5.33333 0.728463 5.39506 0.580315 5.61728C0.469204 5.79012 0.48155 6 0.605007 6.16049L4.58032 9.95062Z" fill="%23BA2426"/></g><defs><clipPath id="clip0_5457_10795"><rect width="10" height="12.1975" fill="white"/></clipPath></defs></svg>');
  display: inline-block;
  width: 10px;
  height: 12px;
  margin-right: 0.5rem;
  position: relative;
  top: 1px;
}

.selers--search {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 778px) {
  .selers--search {
    margin-bottom: 20px;
  }
}
.selers--search input[type=text] {
  background-image: url('data:image/svg+xml,<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_5457_10807)"><path d="M28.6617 27.0908L21.3392 19.7683C23.0792 17.6658 24.1183 14.9833 24.1183 12.0592C24.1425 5.41333 18.7292 0 12.0592 0C5.41333 0 0 5.41333 0 12.0592C0 18.705 5.41333 24.1183 12.0592 24.1183C14.9833 24.1183 17.6658 23.0792 19.7683 21.3392L27.0908 28.6617C27.3083 28.8792 27.5983 29 27.8883 29C28.1783 29 28.4683 28.8792 28.6858 28.6617C29.1208 28.2267 29.1208 27.5258 28.6858 27.0908H28.6617ZM12.0592 21.895C6.64583 21.895 2.22333 17.4725 2.22333 12.0592C2.22333 6.64583 6.64583 2.22333 12.0592 2.22333C17.4725 2.22333 21.895 6.64583 21.895 12.0592C21.895 17.4725 17.4725 21.895 12.0592 21.895Z" fill="%23BBBBBB"/></g><defs><clipPath id="clip0_5457_10807"><rect width="29" height="29" fill="white"/></clipPath></defs></svg>');
  background-position: 15px 50%;
  background-repeat: no-repeat;
  padding-left: 60px;
  width: 500px;
  border-color: #444444;
  margin-bottom: 0;
}
@media (max-width: 778px) {
  .selers--search input[type=text] {
    margin-bottom: 20px;
    width: 350px;
  }
}
.selers--search input:focus::placeholder {
  color: transparent;
}
.selers--search--select {
  display: flex;
  align-items: center;
}
@media (max-width: 778px) {
  .selers--search--select {
    flex-wrap: wrap;
  }
}
.selers--search--select label {
  margin-right: 1rem;
  font-weight: bold;
  white-space: nowrap;
}
.selers--search--select #category-select {
  margin: 0;
  width: 350px;
  max-width: 350px;
  border-radius: 0;
}
.selers--search--filter {
  width: 100%;
  margin-top: 20px;
}
.selers--search--filter--title {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 778px) {
  .selers--search--filter--title {
    display: inline;
  }
}
.selers--search--filter--title h3 {
  font-size: 14px;
  margin-bottom: 1rem;
}
@media (max-width: 778px) {
  .selers--search--filter--title h3 {
    display: inline;
  }
}
@media (max-width: 778px) {
  .selers--search--filter--title strong {
    display: none;
  }
}
.selers--search--filter span {
  background-color: #E3E3E3;
  display: inline-block;
  padding: 0 1.2rem 0 1.5rem;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  margin-right: 1.2rem;
  cursor: pointer;
}
.selers--search--filter span:last-child {
  margin-right: 0;
}
@media (max-width: 778px) {
  .selers--search--filter span {
    font-size: 14px;
    padding: 0 0.5rem 0 0.5rem;
    height: 28px;
    line-height: 28px;
  }
}
.selers--search--filter span::after {
  content: "";
  display: inline-block;
  width: 6.5px;
  padding: 6.5px;
  background-image: url('data:image/svg+xml,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_6064_8541)"><path d="M0.650024 0.650391L12.35 12.3504" stroke="%23555454" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.650024 12.3504L12.35 0.650391" stroke="%23555454" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_6064_8541"><rect width="13" height="13" fill="white"/></clipPath></defs></svg>');
  position: relative;
  top: 2px;
  margin: 0 0 0 10px;
}

.selers--map {
  margin: 20px 0 40px 0;
}
.selers--map--breadcrumb {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 778px) {
  .selers--map--breadcrumb {
    flex-wrap: wrap;
  }
}
.selers--map--breadcrumb li {
  font-weight: bold;
}
.selers--map--breadcrumb li a {
  color: #C3102E;
}
.selers--map--breadcrumb li::after {
  content: ">";
  padding: 0 0.5rem;
}
.selers--map--breadcrumb li:last-child:after {
  display: none;
}

@media screen and (max-width: 768px) {
  .shop--listing--header {
    font-size: 20px;
  }
}
.shop--listing--header img {
  margin-left: 0;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .shop--listing--header img {
    display: block;
  }
}

.shop--listing {
  margin-bottom: 40px;
}

.item--shop {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 20px;
  padding: 5px 20px 5px 20px !important;
}
.item--shop h2 {
  margin: 0 0 10px;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
}
.item--shop--nav {
  padding-bottom: 30px;
  border-bottom: 1px solid #818282;
}
.item--shop--nav a {
  color: #C3102E;
  padding-right: 1rem;
}
.item--shop--address {
  margin: 20px 0 5px 0;
}

.shop-listing {
  flex-flow: column;
}

.item-shop {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
}
.item-shop--hidden {
  display: none;
}
.item-shop > .row {
  padding-bottom: 20px;
  border-bottom: 1px solid #818282;
}

#category-select {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px 15px;
  font-size: 14px;
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 15%;
}
@media (min-width: 576px) {
  #category-select {
    max-width: 320px;
  }
}

@media (max-width: 991px) {
  .item-shop .col-text {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.item-shop .-title {
  margin: 0 0 20px;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: #000000;
}

.item-shop .-map {
  width: 185px;
  height: 140px;
}

.item-shop .-map > iframe {
  width: 100%;
  height: 100%;
}

.item-shop .-address {
  width: 185px;
}

.item-shop p a {
  color: inherit;
}

.item-shop .col-text {
  padding-bottom: 40px;
}

.item-shop .col-category {
  position: relative;
  top: -20px;
}

@media (max-width: 575px) {
  .item-shop {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .item-shop .col-category {
    top: 0;
    font-size: 10px;
    padding-top: 15px;
  }
  .item-shop .-map {
    width: 100%;
    margin-top: 15px;
  }
}
@media (min-width: 940px) {
  .item-shop {
    padding: 0 38.75px;
  }
  .row-listing {
    margin: 0 -38.75px;
  }
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}
.item-shop .col-category {
  position: relative;
  margin: 10px 0 0 0;
}

.tile {
  width: 100%;
  min-height: 550px;
  border: solid 1px;
  text-align: center;
  margin-bottom: 3em;
}

.tile.theme-red {
  border-color: #C3102E;
}

.tile.theme-blue {
  border-color: #4698C6;
}

.tile.theme-green {
  border-color: #0F857E;
}

.tile.theme-yellow {
  border-color: #F1B559;
}

.tile.theme-purple {
  border-color: #7D629E;
}

.tile-header {
  display: flex;
  justify-content: center;
  min-height: 200px;
}

.tile-content {
  padding: 3.25em;
}

.tile-content H3 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding-bottom: 0.5em;
}

.tile.theme-red .tile-header {
  background-color: #C3102E;
}

.tile.theme-blue .tile-header {
  background-color: #4698C6;
}

.tile.theme-green .tile-header {
  background-color: #0F857E;
}

.tile.theme-yellow .tile-header {
  background-color: #F1B559;
}

.tile.theme-purple .tile-header {
  background-color: #7D629E;
}

.tile.theme-red .tile-header.light, .tile.theme-blue .tile-header.light, .tile.theme-green .tile-header.light, .tile.theme-yellow .tile-header.light, .tile.theme-purple .tile-header.light {
  background-color: #FFFFFF;
}

.tile-content .btn {
  margin-top: 1.5em;
  padding-left: 2.25em;
  padding-right: 2.25em;
  text-decoration: none;
  cursor: pointer;
}

.symbol {
  width: 35%;
  margin: 5em;
}

.tile-header.light > .symbol {
  margin-bottom: 0.8em;
}

/* BUTTON */
.btn {
  padding: 12px 25px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 20px;
  box-shadow: none !important;
}

.btn:hover {
  text-decoration: underline;
}

.btn.btn-primary {
  font-weight: 500;
  color: #FFFFFF;
  background: #C3102E;
}

.btn.btn-secondary {
  font-weight: 500;
  color: #FFFFFF;
  background: #BA2426;
}

.btn.btn-tertiary {
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  background: #050505;
}

.btn.btn-link {
  padding: 0;
  color: #BA2426;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  vertical-align: baseline;
}

.btn.btn-link:hover {
  color: #BA2426;
  text-decoration: underline;
}

.-with-play {
  position: relative;
  display: inline-block;
}

.-with-play::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  margin-left: -23px;
  background: url(../images/frontend/content/icon-play.svg) center center no-repeat;
  background-size: 100%;
  z-index: 9;
}

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