.cookie_popup {
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 12px 32px 0px #221b5180;
  background-color: #fff;
  max-width: calc(100% - 40px);
  width: 370px;
  padding: 32px 27px;
  border-radius: 10px;
  transition: transform 0.4s;
}
.cookie_popup.hide {
  transform: translateX(-50%) translateY(calc(100% + 16px));
}
.cookie_popup .layout--flex {
  gap: 8px;
}
.cookie_popup-btn {
  cursor: pointer;
  box-shadow: 0px 2px 2px -2px #2226324d;
  padding: 13.5px;
  display: inline-block;
  width: calc(50% - 5px);
  background-color: #dd183b;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  color: #fff;
  border: none;
  border-radius: 10px;
}
.cookie_btns {
  display: flex;
  justify-content: space-between;
}
.cookie_popup strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  margin-bottom: 12px;
  color: #00234b;
}
.cookie_popup p {
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 20px;
  color: #687f8c;
}
@media (min-width: 767px) {
  .cookie_popup {
    width: 600px;
  }
  .cookie_popup strong {
    font-size: 26px;
    line-height: 35px;
  }
  .cookie_popup p {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 25px;
  }
  .cookie_popup-btn {
    padding: 15px;
    font-size: 17px;
    line-height: 17px;
    width: calc(50% - 10px);
  }
  .cookie_popup .layout--flex {
    gap: 20px;
  }
}
.cookie_popup a {
  color: #dd183b !important;
}
