@charset "UTF-8";
/* size indicator */
/* pomocný ukazatel aktuální šířky sloupce: do body vložit:
<div id="size-indicator"><span id="size-indicator-content"></span></div>

na produkci přidat do css:
#size-indicator {
    display: none;
}
*/
#size-indicator {
  position: fixed;
  top: 0;
  right: 0;
  height: 20px;
  width: 30px;
  background-color: red;
  color: white;
  text-align: center;
  z-index: 10000;
}

#size-indicator-content:after {
  content: "-";
}

@media (min-width: 576px) {
  #size-indicator {
    background-color: magenta;
  }
  #size-indicator-content:after {
    content: "SM";
  }
}
@media (min-width: 768px) {
  #size-indicator {
    background-color: green;
  }
  #size-indicator-content:after {
    content: "MD";
  }
}
@media (min-width: 992px) {
  #size-indicator {
    background-color: blue;
  }
  #size-indicator-content:after {
    content: "LG";
  }
}
@media (min-width: 1200px) {
  #size-indicator {
    background-color: black;
  }
  #size-indicator-content:after {
    content: "XL";
  }
}
/* size indicator */
/* pomocný ukazatel aktuální šířky sloupce: do body vložit:
<div id="size-indicator"><span id="size-indicator-content"></span></div>

na produkci přidat do css:
#size-indicator {
    display: none;
}
*/
#size-indicator {
  position: fixed;
  top: 0;
  right: 0;
  height: 20px;
  width: 30px;
  background-color: red;
  color: white;
  text-align: center;
  z-index: 10000;
}

#size-indicator-content:after {
  content: "-";
}

@media (min-width: 576px) {
  #size-indicator {
    background-color: magenta;
  }
  #size-indicator-content:after {
    content: "SM";
  }
}
@media (min-width: 768px) {
  #size-indicator {
    background-color: green;
  }
  #size-indicator-content:after {
    content: "MD";
  }
}
@media (min-width: 992px) {
  #size-indicator {
    background-color: blue;
  }
  #size-indicator-content:after {
    content: "LG";
  }
}
@media (min-width: 1200px) {
  #size-indicator {
    background-color: black;
  }
  #size-indicator-content:after {
    content: "XL";
  }
}
/** v případě, že používáme širší sloupec */
@media (min-width: 1400px) {
  #size-indicator {
    background-color: grey;
  }
  #size-indicator-content:after {
    content: "XXL";
  }
}
.cookieBar {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0 0 0 0;
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookieBar.active {
  display: flex;
}
.cookieBar__inner {
  max-width: calc(100% - 40px);
  width: 100%;
  background: #ffffff;
  max-height: calc(100% - 20px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px 40px;
}
@media screen and (min-width: 990px) {
  .cookieBar__inner {
    max-width: 700px;
    width: 100%;
    padding: 40px 40px;
  }
}
.cookieBar__inner[data-step] {
  display: none;
}
.cookieBar__inner[data-step]:first-child {
  display: block;
}
.cookieBar__inner [data-step-target] {
  cursor: pointer;
}
.cookieBar__inner h4 {
  margin-bottom: 20px;
  margin-top: 0;
}
.cookieBar__arrow {
  margin-bottom: 30px;
  display: block;
}
.cookieBar__arrow img {
  width: 20px;
  height: 20px;
}
.cookieBar__switchWrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cookieBar__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  min-width: 60px;
  height: 34px;
}
.cookieBar__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookieBar__switch input:checked + .cookieBar__slider {
  background-color: grey;
}
.cookieBar__switch input:checked + .cookieBar__slider::before {
  transform: translateX(26px);
}
.cookieBar__switch input:focus + .cookieBar__slider {
  box-shadow: 0 0 1px grey;
}
.cookieBar__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c4c4c4;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.cookieBar__slider--round {
  border-radius: 34px;
}
.cookieBar__slider--round::before {
  border-radius: 50%;
}
.cookieBar__slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.cookieBar .btn__wrapper {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 990px) {
  .cookieBar .btn__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
}
.cookieBar .btn__wrapper .btn {
  z-index: 10;
}
.cookieBar .btn__wrapper span {
  margin-top: 15px;
  text-decoration: underline;
}
@media screen and (min-width: 990px) {
  .cookieBar .btn__wrapper span {
    margin-top: 0;
  }
}
.cookieBar .btn__wrapper-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media screen and (min-width: 990px) {
  .cookieBar .btn__wrapper-inner {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    gap: 25px;
  }
}
.cookieBar .btn__wrapper-inner .btn:last-child {
  margin-bottom: 15px;
}
@media screen and (min-width: 990px) {
  .cookieBar .btn__wrapper-inner .btn:last-child {
    margin-bottom: 0;
  }
}
.cookieBar hr {
  border: 0;
  margin: 20px 0;
  height: 1px;
  background: #828282;
}

/*# sourceMappingURL=oxit.css.map */
