.consent-cookies {
  position: fixed;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 101;
  width: calc(100% - 40px);
  max-width: 820px;
  background-color: #ffffff;
  border-radius: 50px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.consent-cookies__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 32px;
}
.consent-cookies__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.consent-cookies__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: #333333;
  margin: 0;
}
.consent-cookies__text a {
  color: #333333;
  text-decoration: underline;
}
.consent-cookies__text a:hover,
.consent-cookies__text a:focus {
  text-decoration: none;
}
.consent-cookies__btns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.consent-cookies__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  background-color: #80AB5E;
  border: none;
  border-radius: 20px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.consent-cookies__btn:hover,
.consent-cookies__btn:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #23342A;
  outline: none;
}

@media screen and (max-width: 600px) {
  .consent-cookies {
    bottom: 16px;
    width: calc(100% - 24px);
    border-radius: 20px;
  }
  .consent-cookies__wrap {
    -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;
    padding: 20px 20px 16px;
    gap: 12px;
  }
  .consent-cookies__text {
    font-size: 15px;
    text-align: center;
  }
  .consent-cookies__btn {
    width: 100%;
    border-radius: 12px;
  }
}

.consent-mobile-br {
  display: none;
}

@media screen and (max-width: 600px) {
  .consent-mobile-br {
    display: block;
  }
}

.hidden {
  display: none;
}
