#contact .checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}
#contact .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 5px;
  border: 1px solid var(--white);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  padding: 0 !important;
  background: var(--white);
}
#contact .checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
#contact .checkbox input:checked::after {
  content: "";
  background: url(../img/check.svg) no-repeat center;
  background-size: 10px auto;
}
#contact .checkbox label {
  padding: 0;
  color: white;
  font-size: 16px;
}
#contact .checkbox label,
#contact .checkbox input {
  cursor: pointer;
}
#contact .checkbox a {
  color: var(--white);
  margin: 0 auto;
  transition: 0.3s;
}
#contact .checkbox a:hover {
  color: var(--black-4);
}

.footer-column {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
footer h3 {
  margin-bottom: 0;
  font-size: 20px;
  color: white;
}
footer p,
footer a {
  font-size: 16px;
  line-height: normal;
}
footer a {
  color: var(--white);
}
.bottom-footer {
  align-items: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--black-4);
}
.footer-docs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
.bottom-footer p {
  text-align: left;
}
.footer-logo img {
  filter: grayscale(1) brightness(1000%);
}
@media screen and (max-width:992px) {
  .footer-docs {
    padding-top: 20px;
    justify-content: center;
  }
  .footer-logo {
    display: flex;
    justify-content: flex-end;
  }
  .col-md-4 {
    padding-top: 30px;
  }
}
@media screen and (max-width:576px) {
  .bottom-footer p {
    text-align: center;
  }
  .footer-logo {
    margin-top: 20px;
    justify-content: center;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.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;
}
.thanks p.thanks-text {
  color: var(--primary);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
    line-height: normal;
  }
}
.docs {
  word-break: break-word;
  padding: 120px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--primary);
}
.docs a:hover {
  color: var(--black-4);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 130px 0px 50px;
  }
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 300px;
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center;
}
.cookPopup_btn {
  outline: none !important;
  border: none !important;
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
}
.cookPopup_desc {
  font-size: 14px;
}
.show {
  display: flex !important
}