.privacy-policy {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 9999999;
  width: 350px;
  height: auto;
  padding: 20px 18px 18px 18px;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 2px 64px 0 rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
}

.privacy-policy.-show {
  display: flex;
}

.privacy-policy__button-show {
  display: flex;
}

.privacy-policy.-scroll {
  opacity: 0;
  visibility: hidden;
}

.privacy-policy__content {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.privacy-policy__content a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  line-height: 1.4;
}
.privacy-policy__content-mobile {
  display: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.privacy-policy__content-mobile a{
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  line-height: 1.4;
}

.privacy-policy__button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  color: #ffffff;
}
.privacy-policy__button .icon-close {
  width: 10px;
  height: 10px;
  transition: opacity 0.2s linear;
  opacity: 0.5;
}

.privacy-policy__button:hover .icon-close {
  opacity: 1;
}
.privacy-policy__button .icon-close:hover {
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .privacy-policy {
    width: 300px;
    height: 36px;
    padding: 5px 13px;
  }
  .privacy-policy__button {
    top: 11px;
    right: 10px;
  }
  .privacy-policy__button .icon-close {
    width: 9px;
    height: 9px;
  }
  .privacy-policy__content {
    display: none ;
  }
  .privacy-policy__content-mobile {
    display: block;
  }
}

@media screen and (max-width: 374px) {
  .privacy-policy {
    left: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 10px 25px 10px 13px;
    height: auto;
  }
}
