@charset "UTF-8";
.flipswitch {
  position: relative;
  width: 4.19rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-left: auto;
}
.flipswitch .flipswitch.disengaged {
  opacity: 0.5;
}
.flipswitch input[type=checkbox] {
  display: none;
}
.flipswitch .flipswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: #E9F0FD;
  border: 2px solid #C7DAFF;
  border-radius: 4.375rem;
}
.flipswitch .flipswitch-label .flipswitch-inner {
  width: 200%;
  margin-left: -100%;
  -webkit-transition: margin 0.1s ease-in-out;
  -moz-transition: margin 0.1s ease-in-out;
  -ms-transition: margin 0.1s ease-in-out;
  -o-transition: margin 0.1s ease-in-out;
  transition: margin 0.1s ease-in-out;
}
.flipswitch .flipswitch-label .flipswitch-inner::before, .flipswitch .flipswitch-label .flipswitch-inner::after {
  float: left;
  width: 50%;
  height: 2.375rem;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flipswitch .flipswitch-label .flipswitch-inner::before {
  content: "";
  padding: 0.625rem;
}
.flipswitch .flipswitch-label .flipswitch-inner::after {
  content: "";
  text-align: right;
  padding: 0.625rem;
}
.flipswitch .flipswitch-label .flipswitch-switch {
  width: 1.5rem;
  height: 1.5rem;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 50%;
  left: auto;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner {
  margin-left: 0;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-switch {
  transform: translate(100%, -50%);
  background: #44BEA8;
}

.flipswitch-cb + .flipswitch-label .flipswitch-switch {
  background: #EF4142;
}

.option:has(.flipswitch-cb) .switch-text::after {
  content: "Изкл.";
}

.option:has(.flipswitch-cb:checked) .switch-text::after {
  content: "Вкл.";
}

.option {
  display: flex;
  column-gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.option .switch {
  height: fit-content;
}
.option .switch .switch-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.75rem;
  width: 1.875rem;
}

.dots-wrapper.dots-new-line {
  margin-bottom: 0;
}

.types {
  row-gap: 2rem;
}

.smaller-container {
  row-gap: 3rem;
  max-width: calc(960px + 2 * 4.16%);
  padding-bottom: 5rem;
}

.invisible {
  visibility: hidden;
}

.opaque {
  opacity: 0.6;
}

.cookie-options {
  margin-left: 7.5rem;
  height: fit-content;
}
@media screen and (max-width: 960px) {
  .cookie-options {
    margin-left: 0;
    position: absolute;
    right: 0;
    top: -0.7rem;
  }
}

@media screen and (max-width: 960px) {
  .cookie-type {
    flex-direction: column-reverse;
  }
}

.cookie-texts {
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.cookie-texts .cookie-title {
  font-size: 1.5rem;
  font-weight: 500;
}
.cookie-texts .cookie-info {
  font-size: 1rem;
  row-gap: 1rem;
  display: flex;
  flex-direction: column;
}
.cookie-texts h4 {
  font-size: 1.25rem;
  text-decoration: underline;
  font-weight: 500;
}