/* Cookie-согласие */
.cookie-consent {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999;
  background: #282830;
  color: #fff;
  -webkit-box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.3);
  padding: 20px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}

.cookie-consent.visible {
  display: block;
}

.cookie-consent__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 420px;
          flex: 1 1 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__button {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 12px 25px;
  border: 3px solid;
  background: #cd252d;
  border-radius: 12px;
  border-color: #cd252d;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 8px #2B2B2B;
          box-shadow: 3px 3px 8px #2B2B2B;
  white-space: nowrap;
}

.cookie-consent__button:hover {
  color: #F9222A;
  background: none;
  border: 3px solid #F9222A;
}

@media (max-width: 600px) {
  .cookie-consent__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
  }

  .cookie-consent__button {
    white-space: normal;
  }
}
