.cookie_popup {
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 12px 32px 0px #221b5180;
  background-color: #fff;
  width: 100%;
  padding: 14px 25px;
  transition: transform 0.4s;
  background-color: rgb(247, 247, 247);
  color: rgb(51, 51, 51);
  font-family: inherit;
  bottom: 0px;
  position: fixed;
  display: block;
}
.cookie_popup.hide {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.cookie_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie_popup-btn {
  cursor: pointer;
  padding: 9px 12px;
  display: inline-block;
  background-color: rgb(142, 142, 142);
  text-align: center;
  border: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.cookie_popup-btn#accept_cookie {
  background-color: rgb(97, 162, 41);
}
.cookie_btns {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 5px;
  align-items: center;
}
.cookie_popup strong {
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 16px;
}
@media (max-width: 600px) {
  .cookie_inner {
    flex-wrap: wrap;
  }
}
