@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

footer.footer {
  justify-self: flex-end;
  margin-top: auto;
  position: relative;
  min-height: 260px;
  padding: 0px 0px 32px;
  border-top: 1px solid #e4e4e7;
}

footer.footer a,
footer.footer p {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 163%;
  color: #71717a;
}

footer.footer a:visited {
  color: #71717a;
}

footer.footer .action {
  width: 100%;
  background: #fafafa;
  padding: 24px 0;
  height: 104px;
}

footer.footer .action .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer.footer .action .container > div p:first-of-type {
  font-weight: 700;
  font-size: 18px;
  line-height: 178%;
  color: #000;
}

footer.footer .action .container .action-btn {
  border-radius: 2px;
  padding: 10px 20px;
  height: 40px;
  width: 272px;
  background: #ffcb11;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

footer.footer .action .container .action-btn:visited {
  color: black;
}

footer.footer .action .container .action-btn:hover {
  background-color: var(--primary-darken);
}

footer.footer li,
footer.footer .company {
  position: relative;
}

footer.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer.footer .title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.02em;
  color: #18181b;
  display: block;
  margin-bottom: 24px;
}

footer.footer > div.container {
  padding: 48px 0px 48px;
  display: flex;
  flex-direction: column;
}

footer.footer > div.container .footer-links {
  display: flex;
  gap: 48px;
  padding: 0px 24px;
}

footer.footer > div.container .footer-links > div {
  flex: 1;
}

footer.footer > div.container .footer-links > div.logo-block > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 12px;
}

footer.footer > div.container .footer-links > div.ul-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer.footer > div.container .footer-links > div.social .title {
  margin-bottom: 16px;
}

footer.footer > div.container .footer-links > div.social ul {
  display: flex;
  gap: 6px;
}

footer.footer > div.container .footer-links > div.social li {
  border-radius: 8px;
  border: 1px solid #e4e4e7;
  background-color: transparent;
  height: 40px;
  width: 40px;
}

footer.footer > div.container .footer-links > div.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer.footer > div.container .footer-links > div.social li a:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: #c4c4c7;
}

footer.footer > div.container .footer-links > div.social li a > svg {
  flex-shrink: 0;
}

footer.footer > div.container .footer-links > div.social > div:last-of-type {
  margin-top: 24px;
}

footer.footer > div.container .footer-links > div.social > div:last-of-type a {
  border-radius: 4px;
  padding: 0px 10px;
  width: 272px;
  height: 40px;
  background: #000;
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  cursor: pointer;
}

footer.footer > div.container .footer-links > div.social > div:last-of-type a:hover {
  background-color: #686868;
}

footer.footer .company {
  border-top: 1px solid #e4e4e7;
  width: 100%;
  height: 86px;
}

footer.footer .company .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
  height: 85px;
}

footer.footer .company .container > span {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 163%;
  color: #71717a;
}

footer.footer .company .container > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 40px;
}

footer.footer .company .container > div:first-of-type > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #71717a;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 400;
  display: none;
}

.modal.on {
  display: flex;
  flex-direction: column;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 19, 29, 0.6);
  z-index: 1;
}

.modal .modal-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
  background: var(--white);
  width: 100dvw;
  height: 100dvh;
}

.modal .modal-content > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
  flex-shrink: 0;
}

.modal .modal-content > header .modal-header__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  text-align: center;
  margin: 0 auto;
}

.modal .modal-content > header .modal-close {
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.modal .modal-content > header .modal-close:focus {
  outline: none;
  box-shadow: none;
  transform: scale(0.95);
}

.modal .modal-content > main {
  flex: 1;
  overflow: auto;
  min-height: 300px;
}

.modal .modal-content > footer {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 56px;
  padding: 0.625rem 1.25rem;
  width: 100%;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  justify-content: center;
  background-color: var(--white);
  flex-shrink: 0;
}

.modal.loading main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.inactivityBanner {
  border-radius: var(--radius-xs);
  width: 664px;
  height: 376px;
  background: var(--white);
  z-index: 1000;
  padding: 38px 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.inactivityBanner.show {
  opacity: 1;
  visibility: visible;
}

.inactivityBanner.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.inactivityBanner > svg,
.inactivityBanner > span:nth-of-type(2) {
  margin-bottom: 40px;
}

.inactivityBanner > button:nth-of-type(1) {
  border: none;
  background: var(--primary);
  cursor: pointer;
  border-radius: var(--radius-md);
  height: 56px;
  padding: 16.5px 48.5px;
  font-weight: 500;
  font-size: var(--fs-l);
  color: #000;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.inactivityBanner > button:nth-of-type(1):hover {
  background-color: var(--primary-darken);
  box-shadow: 0 4px 12px rgba(255, 203, 17, 0.3);
  transform: translateY(-1px);
}

.inactivityBanner > button:nth-of-type(1):active {
  background-color: var(--primary-darken);
  transform: translateY(0);
  box-shadow: none;
}

.inactivityBanner > span:nth-of-type(1) {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  text-align: center;
  color: #000;
  margin-bottom: 15px;
}

.inactivityBanner > span:nth-of-type(2) {
  font-weight: 400;
  font-size: var(--fs-l);
  color: rgba(0, 0, 0, 0.7);
}

.in-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.in-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#cookie-banner {
  border-radius: var(--radius-xs);
  min-height: 76px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.84);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 35px 10px 28px;
  box-sizing: border-box;
  z-index: 100;
}

#cookie-banner > button:nth-of-type(1) {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--white);
  padding: 0;
}

#cookie-banner > p {
  font-weight: 400;
  font-size: var(--fs-small);
  line-height: 140%;
  color: var(--white);
  margin: 0 0 7px 0;
  text-align: center;
}

#cookie-banner > p > a {
  color: #A3D0FF;
}

#cookie-banner > .accept {
  border: none;
  background: var(--primary);
  cursor: pointer;
  border-radius: var(--radius-xs);
  width: 94px;
  height: 35px;
  font-weight: 400;
  font-size: var(--fs-base);
  color: #000;
  white-space: nowrap;
  margin-top: auto;
  align-self: center;
}

.action-btns {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 4px;
  left: calc(100vw - 90px);
  bottom: 50px;
  z-index: 1001;
}

.action-btns.upper {
  bottom: 155px;
}

.action-btns > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  outline: none;
  background-color: #1d2023;
  border-radius: var(--radius-full);
  opacity: 0.8;
  box-shadow: var(--shadowBlock);
  color: var(--white);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  cursor: pointer;
}

.action-btns > button.hide {
  opacity: 0;
  visibility: hidden;
}

.action-btns > button:hover {
  color: #000;
  opacity: 1;
}

.skeleton-card-list {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadowBlock);
  height: 260px;
  display: flex;
  position: relative;
}

.skeleton-card-list .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
}

.skeleton-card-list .content .title {
  width: 60%;
  height: 26px;
  margin-bottom: 8px;
}

.skeleton-card-list .content .des {
  width: 55%;
  height: 30%;
}

.skeleton-card-list .content .des:nth-of-type(3) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20%;
  height: 90%;
}

.skeleton-card-list .image {
  height: 100%;
  width: 239px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  border-radius: var(--radius-xs);
}

.skeleton-card-list .line {
  height: 12px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  border-radius: var(--radius-xs);
}

.skeleton-card-grid {
  border-radius: var(--radius-xs);
  min-height: 395px;
  max-width: 320px;
  box-shadow: var(--shadowBlock);
  background: var(--white);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  isolation: isolate;
}

.skeleton-card-grid .image {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f5f5f5 25%, #e9e9e9 37%, #f5f5f5 63%);
  background-size: 400% 100%;
  animation: shimmerGrid 1.5s ease infinite;
}

.skeleton-card-grid .content {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-card-grid .content .title {
  height: 20px;
}

.skeleton-card-grid .content .des {
  height: 40px;
  width: 85%;
}

.skeleton-card-grid .content .des:nth-of-type(3) {
  margin-top: auto;
  margin-left: auto;
  width: 100px;
  height: 50px;
}

.skeleton-card-grid .line {
  height: 14px;
  background: linear-gradient(90deg, #f5f5f5 25%, #e9e9e9 37%, #f5f5f5 63%);
  background-size: 400% 100%;
  border-radius: var(--radius-xs);
  animation: shimmerGrid 1.5s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes shimmerGrid {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.notFound {
  display: grid;
  grid-template-areas: "icon title" "icon description";
  align-items: center;
  grid-template-columns: 80px auto;
  column-gap: 45px;
  margin: 40px 0;
  padding: 30px 10px;
  border-bottom: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
}

.notFound > svg {
  grid-area: icon;
}

.notFound > div:first-of-type {
  grid-area: title;
  font-weight: 500;
  font-size: var(--fs-l);
}

.notFound > div:nth-of-type(2) {
  grid-area: description;
  font-weight: 400;
  font-size: var(--fs-small);
}

.empty {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.empty > svg {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.empty > span {
  font-weight: 500;
  font-size: var(--fs-xl);
  line-height: 150%;
  text-align: center;
  color: #000;
}

.empty > span:last-of-type {
  font-weight: 400;
  font-size: var(--fs-l);
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.empty .widget {
  width: 100%;
}

.empty .search-main .period > div:first-child::after {
  height: 100%;
}

.empty .search-main > .people {
  width: 245px;
}

.empty .search-main > .btn {
  width: 130px;
}

.ads article {
  border-radius: 6px;
  height: 94px;
  max-width: 616px;
  display: flex;
  transition: background-color 0.3s ease;
  background: #ffffff;
}

.ads article:hover {
  background: #f8f9fa;
}

.ads article picture img {
  width: 116px;
  height: 100%;
  object-fit: cover;
}

.ads article > div {
  padding: 10px 12px;
}

.ads article > div h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 8px 0;
  line-height: 1.3;
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.ads article > div span {
  display: block;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ads article > span {
  border-radius: 6px;
  width: 76px;
  height: 33px;
  background: #ff690f;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 15px;
  flex-shrink: 0;
  align-self: center;
}

.ads article > svg {
  transform: rotate(90deg);
  flex-shrink: 0;
  align-self: center;
  margin-right: 5px;
}

.ads.grid > * {
  margin: 0;
}

.promo-block {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, opacity 0.4s ease;
  height: 119px;
  border-radius: 6px 0 0 0;
  padding: 12px 14px;
  transform: translateY(0);
  opacity: 0;
  pointer-events: none;
}

.promo-block.show {
  opacity: 1;
  pointer-events: auto;
}

.promo-block > .ads {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.promo-block > .ads article {
  position: relative;
}

.promo-block > .ads article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: rgba(98, 108, 119, 0.2);
}

.promo-block.hide > button svg {
  transform: rotate(180deg);
}

.promo-block > button {
  position: absolute;
  right: 0;
  border: none;
  background: #EEF8FF;
  cursor: pointer;
  width: 50px;
  height: 27px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.promo-block > button svg {
  transition: transform 0.3s ease;
}

.promo-block button:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.promo-block[data-position=top] {
  top: 0;
}

.promo-block[data-position=top] > button {
  top: 119px;
  transform: rotate(180deg);
  clip-path: polygon(15% 0%, 80% 0%, 100% 100%, 0% 100%);
  border-radius: 13px 15px 0 0;
}

.promo-block[data-position=top].hide {
  transform: translateY(-100%);
}

.promo-block[data-position=bottom] {
  bottom: 0;
}

.promo-block[data-position=bottom] > button {
  top: -27px;
  clip-path: polygon(20% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.promo-block[data-position=bottom].hide {
  transform: translateY(100%);
}

.modal > header > span {
  text-align: left;
}

.test {
  gap: 20px;
}

[data-modal=mapCatalog] .modal-content main {
  display: flex;
  position: relative;
  height: 100%;
  overflow: hidden;
}

[data-modal=mapCatalog] .modal-content main .filters-container {
  position: relative;
  min-width: 274px;
  height: calc(100dvh - 57px);
}

[data-modal=mapCatalog] .modal-content main .filters-container form {
  padding: 1rem;
  height: calc(100% - 77px);
}

[data-modal=mapCatalog] .modal-content main .filters-container > button {
  margin: 10px 10px 20px 10px;
  white-space: nowrap;
}

[data-modal=mapCatalog] .modal-content main .filters-container .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 16px;
  background-color: white;
}

[data-modal=mapCatalog] .modal-content main .filters-container .footer > button {
  font-weight: 400;
  font-size: 1rem;
  padding: 0 24px;
  width: 100%;
}

.paginator-spinner .spinner {
  display: none;
  top: 200px;
  position: absolute;
}

.new-sale {
  width: 100%;
  height: 96px;
  background: #212121;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
}

.new-sale > div {
  display: grid;
  grid-template-areas: "icon text1 btn" "icon text2 btn";
  align-items: center;
  grid-template-columns: 53px 1fr minmax(auto, max-content);
}

.new-sale > div > span {
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 150%;
  color: var(--primary);
  display: block;
  grid-area: text1;
  align-self: end;
  margin-bottom: 0;
}

.new-sale > div > span:last-of-type {
  color: var(--white);
  grid-area: text2;
  align-self: start;
  margin-top: 0;
}

.new-sale > div > button {
  border: none;
  background: var(--primary);
  cursor: pointer;
  border-radius: var(--radius-md);
  height: 49px;
  min-width: max-content;
  padding: 15px 20px;
  grid-area: btn;
  font-weight: 500;
  font-size: var(--fs-base);
  color: #000;
}

.new-sale > div > button:hover {
  background: var(--primary-light);
  box-shadow: var(--shadowBtn);
  transform: translateY(-1px);
}

.new-sale > button:first-of-type {
  all: unset;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--white);
}

.new-sale > button:first-of-type > svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  color: var(--white);
  pointer-events: none;
}

.button-spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFD700;
  animation: spin 1s ease-in-out infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 769px) {
  #cookie-banner {
    position: fixed;
    width: 400px;
    bottom: 27px;
    right: 22px;
  }
}

@media (max-width: 1445px) {
  .new-sale > button:first-of-type {
    right: 20px;
  }

  .new-sale > div > button {
    margin-right: 50px;
  }
}

@media (max-width: 768px) {
  .inactivityBanner {
    padding: 34px 18px;
    width: 90%;
  }

  .inactivityBanner > svg {
    width: 65px;
    height: 65px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .inactivityBanner > span:nth-of-type(1) {
    font-weight: 700;
    font-size: var(--fs-xl);
    line-height: 125%;
    text-align: center;
    color: #000;
  }

  .inactivityBanner > span:nth-of-type(2) {
    font-weight: 400;
    font-size: var(--fs-base);
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    margin-bottom: 20px;
    line-height: 170%;
  }

  .inactivityBanner > button:nth-of-type(2) {
    font-weight: 500;
    font-size: var(--fs-l);
    color: #000;
  }

  .cookie-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 350;
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }

  #cookie-banner {
    width: 240px;
    position: relative;
    opacity: 0;
    transform: scale(0);
    transform-origin: left bottom;
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  #cookie-banner.on {
    opacity: 1;
    transform: scale(1);
  }

  #cookie-banner::before {
    content: "";
    position: absolute;
    left: -9.5px;
    top: 80%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(0, 0, 0, 0.84);
  }

  .cookie-animation {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .cookie-animation svg {
    position: absolute;
    top: 0;
    left: 0;
  }

  .cookie-animation svg:not(:first-child) {
    display: none;
  }

  .cookie-animation svg:first-child {
    transform: translateY(15px);
    animation: up 1.2s ease;
  }

  .cookie-animation svg:nth-child(2) {
    animation: moverer 1s infinite alternate;
    will-change: transform;
  }

  .cookie-animation svg:last-child {
    animation: mover 1s infinite alternate;
    will-change: transform;
  }

@keyframes up {
    0% {
      transform: translateY(25px);
    }

    100% {
      transform: translateY(15px);
    }
}

@keyframes mover {
    0% {
      transform: translateY(20px);
    }

    100% {
      transform: translateY(25px);
    }
}

@keyframes moverer {
    0% {
      transform: translateY(15px);
    }

    100% {
      transform: translateY(20px);
    }
}

  #cookie-banner > button:nth-of-type(1) {
    top: 6px;
    right: 8px;
    font-size: var(--fs-xl);
  }

  .notFound > div:first-of-type {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }

  .notFound > div:nth-of-type(2) {
    font-size: 1rem;
  }

  .ads article {
    height: 94px;
  }

  .ads article picture img {
    width: 79px;
  }

  .ads article > div {
    padding: 10px 0 10px 10px;
  }

  .ads article > div h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .ads article > div span {
    font-size: 16px;
  }
}