* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

:root {
  /* COLORS */
  --white: #FFFFFF;
  --grey: #EBE9E9;
  --red: #DF2C32;
  --black: #161718;

  /* UI */
  --border-radius-s: 8px;
  --border-radius-m: 12px;
}

.bg-black {
  background-color: var(--black);
}
.bg-black * {
  color: var(--white);
}
.bg-red {
  background-color: var(--red);
}
.bg-red * {
  color: var(--white);
}
.red {
  color: var(--red);
}
.black {
  color: var(--black);
}
.white {
  color: var(--white);
}
.bold, strong {
  font-weight: bold;
}

a {
  color: var(--red);
  position: relative;
}
a.text-only:hover {
  text-decoration: underline;
}

.display-none {
  display: none;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  height: 40px;
  padding-top: 2px;
  padding-left: 36px;
  padding-right: 16px;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  border-radius: 20px;
  white-space: nowrap;
  width: min-content;
  color: var(--white);
  overflow: hidden;
  transition: padding .2s ease;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background-color: var(--red);
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 3;
  background-color: var(--white);
  border-radius: 50%;
  width: .7em;
  height: .7em;
  transition: transform .2s ease;
}

.button:hover::after {
  transform: translateY(-50%) scale(.7);
}
.button:hover {
  padding-left: 33px;
  padding-right: 19px;
}

.button.outline {
  border: 1px solid var(--red);
  color: var(--red);
}
.button.outline::before {
  background-color: unset;
}
.button.outline::after {
  background-color: var(--red) !important;
}

.bg-black .button {
  border: 1px solid white;
}
.bg-black .button::before {
  background-color: unset;
}

.img-as-bg .button {
  border: unset;
  color: var(--black);
}
.img-as-bg .button::before {
  background-color: var(--white);
}
.img-as-bg .button::after {
  background-color: var(--black) !important;
}

.show-mobile {
  display: none;
}
.show-desktop {
  display: unset;
}
@media screen and (max-width: 768px) {
  .show-mobile {
    display: unset;
  }
  .show-desktop {
    display: none;
  }
}


:root {
  --marquee-height: 44px;
}


ul li {
  padding-left: 15px;
  position: relative;
}
ul li::before {
  position: absolute;
  top: .15em;
  left: 0;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--red);
}

ul.disable-bullets li::before {
  display: none;
}
ul.disable-bullets li {
  padding-left: inherit;
}