.fbm-back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 936px) / 2 - 76px));
  bottom: 104px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(109, 43, 219, 0.24);
  border-radius: 50%;
  background: #ffffff;
  color: #6d2bdb;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.14);
  cursor: pointer;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  z-index: 40;
}

.fbm-back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(17, 24, 39, 0.18);
}

.fbm-cookie-notice {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(520px, calc(100vw - 48px));
  padding: 14px 16px;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  background: #ffffff;
  color: #637381;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.16);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 50;
}

.fbm-cookie-notice__text {
  flex: 1;
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.fbm-cookie-notice__button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 6px;
  background: #6d2bdb;
  color: #ffffff;
  cursor: pointer;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 14px;
}

@media (max-width: 720px) {
  .fbm-back-to-top {
    right: 16px;
    bottom: 92px;
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .fbm-cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
  }
}
