.cookie {
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 10px;
  right: 0;
}
.cookie.hidden, .cookie .hidden {
  display: none;
}
@media (max-width: 997px) {
  .cookie .container {
    max-width: 100%;
    width: 100%;
  }
}
.cookie__wrap {
  width: 560px;
  padding: 25px 30px 30px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (max-width: 997px) {
  .cookie__wrap {
    width: 100%;
    box-sizing: border-box;
  }
}
.cookie .text, .cookie .cookie__item__list__item__box {
  color: #888;
  font-size: 14px;
}
.cookie .text h3, .cookie .cookie__item__list__item__box h3 {
  color: #555;
  font-size: 16px;
  line-height: 120%;
  text-transform: none;
  margin: 0 0 15px;
}
.cookie .text p, .cookie .cookie__item__list__item__box p {
  margin: 0;
  color: #888;
  font-size: 14px;
  line-height: 130%;
}
.cookie .text a, .cookie .cookie__item__list__item__box a {
  color: #000;
  text-decoration: underline;
  transition: all 0.25s ease;
}
.cookie .text a:hover, .cookie .cookie__item__list__item__box a:hover {
  color: #fa4040;
  text-decoration: none;
}
.cookie__item__list__item {
  margin-bottom: 10px;
}
.cookie__item__list__item:last-child {
  margin: 0;
}
.cookie__item__list__item__header {
  display: flex;
}
.cookie__item__list__item__header .title {
  border-bottom: 1px solid #b3b3b3;
  display: flex;
  flex: 1 1;
  color: #555;
  font-size: 16px;
  line-height: 120%;
  order: 2;
}
.cookie__item__list__item__header .form-check {
  flex: 0 0 auto;
  display: flex;
}
.cookie__item__list__item__box {
  display: none;
  padding-left: 30px;
  padding-top: 5px;
}
.cookie__item__list__item.active {
  background: none !important;
}
.cookie__item__list__item.active .cookie__item__list__item__box {
  display: block;
}
.cookie__item__list__item.active a {
  color: #000 !important;
}
.cookie__item__list__item.active a:hover {
  color: #fa4040 !important;
}
.cookie__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
@media (max-width: 997px) {
  .cookie__btns {
    flex-direction: column;
    justify-content: center;
  }
}
.cookie__btns__all {
  display: flex;
}
@media (max-width: 997px) {
  .cookie__btns__all {
    justify-content: center;
    margin-top: 10px;
  }
}
.cookie__btns a {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  text-decoration: underline;
}
.cookie__btns a:hover {
  color: #fa4040;
  text-decoration: none;
}
.cookie .btn {
  height: 35px;
  padding: 0 10px;
  border-width: 1px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin-left: 15px;
  transition: all 0.25s ease;
}
.cookie .close {
  position: absolute;
  top: 0;
  margin-bottom: 0px;
  right: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 2;
  display: block;
  text-indent: -9999px;
  background: none;
  padding: 0;
  border: none;
}
.cookie .close:before, .cookie .close:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #5b5b64;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie .close:before {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.cookie .close:after {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.cookie .close:hover:before {
  transform: translate3d(-50%, -50%, 0) rotate(135deg);
}
.cookie .close:hover:after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.cookie .close .visually-hidden {
  opacity: 0;
  position: absolute;
}
.cookie .jq-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.8);
  vertical-align: middle;
  flex: 0 0 20px;
  cursor: pointer;
  margin: 0 10px 0 0;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.cookie .jq-checkbox__div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
  width: 17px !important;
  height: 15px !important;
  transition: all 0.25s ease;
  background: url(/img/icons/check.png) no-repeat center;
  opacity: 0;
  margin: 0 !important;
  border: none !important;
}
.cookie .jq-checkbox.checked .jq-checkbox__div {
  opacity: 1;
}
.cookie .jq-checkbox.checked--dis {
  background: #000;
}
.cookie .jq-checkbox.checked--dis .jq-checkbox__div {
  filter: invert(91%) sepia(52%) saturate(2%) hue-rotate(62deg) brightness(150%) contrast(151%);
}
.cookie .jq-checkbox.disabled {
  opacity: 0.55;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.25s ease;
}
