/* Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.spodna-lista * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  list-style: none;
  line-height: 1.5rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ececec;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  border: 1px solid #d4d4d4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #d9b975;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #d9b975;
          box-shadow: 0 0 1px #d9b975;
}

input:checked + .slider:before {
  background-color: white;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  border: 1px solid #d4d4d4;
}

.slider.round:before {
  border-radius: 50%;
}

.necessary-checked {
  background-color: #f7efdf;
}

.necessary-checked::before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* .modal {
  width: 100%;
  height: 100vh;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
  pointer-events: none;

} */

/* Spodna Lista */
.spodna-lista {
  position: fixed;
  bottom: 0;
  z-index: 500;
  width: 100%;
  margin-top: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #f4ead6;
  color: #4b4b4b;
  pointer-events: all;
}

.spodna-lista .container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.spodna-lista .container .info {
  margin-bottom: 1.25rem;
  overflow-y: auto;
}

@media screen and (max-width: 64rem) {
  .spodna-lista .container .info {
    max-height: 100px;
  }
}

.spodna-lista .container .info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.spodna-lista .container .info p {
  font-size: 0.8rem;
  font-weight: 300;
}

/* Detaily lista */
.detaily-lista {
  display: none;
  width: 100%;
  max-width: 90%;
  max-height: 90%;
  padding: 5rem 2rem;
  position: fixed;
  z-index: 550;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: white;
  border-radius: 1rem;
  overflow-y: auto;
  pointer-events: all;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media screen and (max-width: 64rem) {
  .detaily-lista {
    max-height: 75%;
  }
}

@media screen and (min-width: 48rem) {
  .detaily-lista {
    max-width: 48rem;
  }
}

.detaily-lista h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4b4b4b;
  text-transform: uppercase;
}

.detaily-lista hr {
  margin: 1rem 0;
  color: #d9b975;
}

.detaily-lista .typ-cookie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #4b4b4b;
}

@media screen and (min-width: 48rem) {
  .detaily-lista .typ-cookie {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.detaily-lista .typ-cookie h4 {
  font-size: 1rem !important;
}

.detaily-lista .typ-cookie p {
  font-size: 0.9rem !important;
  font-weight: 300;
}

/* Buttony */
.ovladanie {
  width: 100%;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .ovladanie {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.ovladanie.ovladanie-detaily {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.ovladanie button {
  -webkit-appearance: none;
  min-width: 12.5rem;
  padding: 0.5rem 2rem;
  background: none;
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.ovladanie button.button-open, .ovladanie button.button-change {
  border: 1px solid #d9b975;
  background: white;
  color: #4b4b4b;
}

.ovladanie button.button-accept {
  background: #2b1606;
}

.ovladanie button.button-deny {
  border: none;
  color: #4b4b4b;
}
/*# sourceMappingURL=styles.css.map */