.page-head {
background-image: -webkit-gradient(linear, left top, right top, from(#5040f4), to(#31b4fe));
  background-image: linear-gradient(to right, #5040f4 0, #31b4fe 100%);
}
#cookPopup {
  display: none;
  grid-template-columns: 4fr 1fr;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: left;
  font-family: inherit;
}
.cookPopup_btn {
  padding: 7px 15px;
  cursor: pointer;
  border: 0;
  background: #5040f4;
  border-radius: 4px;
  color: #fff;
  display: block;
  margin: 0 auto;
}
.cookPopup_btn:hover {
  background: #31b4fe
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    grid-template-columns: 1fr;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: grid !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 250px 0 50px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.docs {
  word-break: break-word;
  padding: 120px 0 0;
  margin-bottom: -100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}