:root {
  --color-brand-primary: #2150de;
  --off-black: #1e1e1e;
  --base-font-size-px: 16px;
  --spacing: 2rem;
  --spacing-half: 1rem;
}

.display-none {
  display: none;
}

@media (min-width: 0) and (max-width: 639px) {
  .visible-xs {
    display: block !important;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .visible-sm {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-md {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .visible-xl {
    display: block !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .visible-xxl {
    display: block !important;
  }
}

@media (min-width: 1600px) {
  .visible-xxxl {
    display: block !important;
  }
}

.gradient-bg-1 {
  background: linear-gradient(to right, #1F80F3 0%, #1F80F3 calc(50% - 600px), #1F80F3 calc(50% - 600px), #392AE4 calc(50% + 600px), #392AE4 calc(50% + 600px), #392AE4 100%);
}

body.username-test:before {
  content: "";
  position: fixed;
  left: 0;
  top: 70px;
  background-color: purple;
  color: white;
  padding: 8px 12px;
}
@media (min-width: 0) {
  body.username-test:before {
    content: "xs";
  }
}
@media (min-width: 640px) {
  body.username-test:before {
    content: "sm";
  }
}
@media (min-width: 768px) {
  body.username-test:before {
    content: "md";
  }
}
@media (min-width: 992px) {
  body.username-test:before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body.username-test:before {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  body.username-test:before {
    content: "xxl";
  }
}
@media (min-width: 1600px) {
  body.username-test:before {
    content: "xxxl";
  }
}

ul.social-links, ul.appstore-links {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 12px;
  justify-content: space-between;
  justify-items: flex-start;
}
ul.social-links li a, ul.appstore-links li a {
  color: #f0f1f5;
}
ul.social-links.color-black li a, ul.appstore-links.color-black li a {
  color: #292e3d;
}
ul.social-links.larger li a svg, ul.appstore-links.larger li a svg {
  height: 50px;
  width: auto;
}
ul.social-links.inline-flex, ul.appstore-links.inline-flex {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: normal;
}

.text-align-center {
  text-align: center;
}

.image-responsive {
  margin: 0;
  padding: 0;
}
.image-responsive img {
  max-width: 100%;
  height: auto;
}

body.error404 .addtoany_share_save_container {
  display: none;
}

.dev-note {
  color: #292e3d;
  background-color: #d7d5f3;
  border: 1px solid #ccc;
  padding: 10px;
}