.cookie-card {
  position: fixed;
  display: none;   
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  width: 500px;
  left: 0px;
  bottom: 0px;
  margin: 10px;
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.4) 0px 13px 27px -5px, rgba(0, 0, 0, 0.5) 0px 8px 16px -8px, inset rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
  z-index: 2147483647;
}

@media screen and (max-width: 535px) {
  .cookie-card {
    width: 100%;
    border-radius: 0;
    margin: 0px;
  }
}

.cookie-title {
  font-size: 20px;
  position: relative;
  font-weight: bold;
  color: rgb(31 41 55);
  padding-bottom: 15px;
}

.cookie-title::after {
  bottom: 5px;
}

.cookie-description {
  position: relative;
  height: fit-content;
  font-size: 15px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #000000d3;
  margin: 0;
}

.cookies-policy {
  color: #0360c1;
  text-decoration: underline;
  transition: .3s color;
}

.cookies-policy:hover {
  text-decoration: none;
  color: #a52a2a;
}

.cookies-policy:active {
  color: rgba(31, 41, 55, 0.61);
}

.accept-button__container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: fit-content;
  margin-top: 20px;
}

.accept-button,
.reject-button {
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  width: calc(100% / 3);
  min-width: 85px;
  height: 35px;
  border: rgb(0, 0, 0) 2px solid;
  transition: .3s background-color;
}

.accept-button {
  color: #000000;
  background-color: var(--yellow-color);
}

.accept-button:hover {
  background-color: var(--yellow-color-dark);
}

.accept-button:active {
  font-weight: 100;
}

.reject-button {
  font-weight: 500;
  background-color: #f2f3f7;
  color: #000000d3;
}

.reject-button:hover {
  background-color: #e6e9f3;
}

.reject-button:hover,
.accept-button:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 16px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
