:root {
  --primary-color: var(--theme-color);
  --horiz-color: #e51a4b;
}


a {
  text-decoration: underline;
}

.cookie_link {
  color: #e51a4b;
}

.cookie_wrap {
  backdrop-filter: blur(6px);
  background-color: rgba(18, 20, 21, .85);
  padding: 25px 25px 20px;
  position: relative;
  top: auto;
  right: auto;
  overflow: hidden;
}

.cookie_txt_info {
  color: #afafaf;
  font-size: 12px;
  line-height: 16px;
}

.cookie_box {
  justify-content: flex-end;
  display: flex;
}

.cookie_img {
  width: 40%;
  margin-right: 30px;
  display: none;
}

.cookie_button {
  background-color: var(--horiz-color);
  color:  var(--third-color);
  margin-left: auto;
  padding: 5px 10px;
  font-size: 13px;
}

.cookie_txt {
  width: 70%;
  flex-direction: column;
  display: flex;
}

.cookie_horiz {
  height: 5px;
  background-color: var(--horiz-color);
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 30px;
  right: 30px;
}

.cookie-pix {
  z-index: -3;
  width: 200px;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.wrapp_all_cookie {
  z-index: 1000;
  width: 370px;
  perspective: 1320px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 200px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  transform: perspective(1301px);
}

.cookie_pix_logo {
  max-height: 100%;
}

@media screen and (max-width: 991px) {
  .cookie_wrap {
    width: auto;
  }

  .wrapp_all_cookie {
    width: 370px;
  }
}

@media screen and (max-width: 767px) {
  .wrapp_all_cookie {
    margin-left: auto;
    margin-right: auto;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
}

@media screen and (max-width: 479px) {
  .cookie_txt_info, .cookie_button {
    font-size: 14px;
  }

  .wrapp_all_cookie {
    width: 80%;
  }
}


