body {
  font-family: 'Roboto';
}
.agreement-popup {
  background: #111;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
}
.agreement-popup.active {
  visibility: visible;
  opacity: 1;
  z-index: 20;
}

.agreement-popup-close {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.agreement-popup-close::before,
.agreement-popup-close::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform-origin: center;
}
.agreement-popup-close::before {
  transform: rotate(45deg);
}
.agreement-popup-close::after {
  transform: rotate(-45deg);
}
.agreement-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 45px 20px 20px;
  font-family: inherit;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.agreement-link {
  font-family: inherit;
  color: #fff;
  font-size: inherit;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: underline;
}
.agreement-link:hover {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 480px) {
  .agreement-content {
    padding: 25px 55px 25px 32px;
  }
  .agreement-popup-close {
    top: 15px;
    right: 15px;
  }
}
@media (min-width: 900px) {
  .agreement-content {
    padding: 27px 80px 30px 50px;
  }
}
@media (min-width: 1024px) {
  .agreement-content {
    font-size: 13px;
  }
}
@media (min-width: 1600px) {
  .agreement-content {
    font-size: 14px;
  }
  .agreement-popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
  }
}