/**
 * Footer component styles.
 * SCSS: assets/css/components/footer.scss
 * CSS (compiled by IDE): assets/css/components/footer.css
 */
.site-footer {
  background: var(--block-bg, transparent);
  color: var(--text-color);
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.site-info {
  text-align: center;
  font-size: 14px;
}
.site-info a {
  color: inherit;
  text-decoration: none;
}
.site-info a:hover {
  text-decoration: none;
  color: var(--additional-c-elements);
}
.site-info .sep {
  margin: 0 8px;
  opacity: 0.6;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top__links a,
.footer-top__links button.footer-top__link {
  color: #fff;
  margin-right: 20px;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  text-transform: none;
}
.footer-top__links a:hover,
.footer-top__links button.footer-top__link:hover {
  text-decoration: none;
  color: var(--additional-c-elements, #fff);
}
.footer-top__icons {
  display: flex;
  gap: 16px;
}
.footer-top__icon {
  background: rgba(255, 255, 255, 0.4117647059);
  border-radius: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.footer-top__icon img {
  width: 100%;
  height: auto;
  padding: 5px;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  margin: 20px 0;
}
.footer-middle__icons {
  display: flex;
  gap: 20px;
}
.footer-middle__icons img {
  width: 40px;
  height: 40px;
}
.footer-middle__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-middle__button {
  display: flex;
  align-items: center;
  gap: 10px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--footer-btn-bg, var(--button-bg));
  color: #000;
  width: 150px;
}
.footer-middle__button img {
  width: 20px;
  height: 20px;
}
.footer-middle__button-text {
  font-size: 14px;
  font-weight: 700;
}
.footer-middle__button-text-label {
  font-weight: 400;
  display: block;
  font-size: 12px;
  text-align: left;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom__text {
  width: 70%;
  font-size: 14px;
  font-weight: 300;
}
.footer-bottom__icons {
  width: 20%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
  gap: 15px;
}
.footer-bottom__icons img {
  width: 40px;
  height: 40px;
}
.footer-bottom__copyright {
  width: 100%;
}

@media (max-width: 992px) {
  .footer-top,
  .footer-middle,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-top__links,
  .footer-top__icons,
  .footer-middle__icons,
  .footer-middle__buttons {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 20px 0;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  .footer-top__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-top__links a,
  .footer-top__links button.footer-top__link {
    margin-right: 0;
  }
  .footer-top__link {
    text-align: center;
  }
  .footer-top__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .footer-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .footer-middle__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer-middle__buttons {
    display: flex;
    gap: 12px;
    width: 100%;
  }
  .footer-middle__button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .footer-bottom__icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .footer-bottom__copyright {
    font-size: 14px;
    line-height: 1.4;
  }
}/*# sourceMappingURL=footer.css.map */