/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.theme--white {
  --theme-bg: #ffffff;
  --theme-text: #000000;
  --theme-link: #121384;
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #ffe500;
  --button-text-hover: #121384;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.theme--white a:not(.button) {
  color: var(--theme-link);
}

.theme--blue {
  --theme-bg: #121384;
  --theme-text: #ffffff;
  --theme-link: #ffffff;
  --button-bg: #ffe500;
  --button-text: #121384;
  --button-bg-hover: #ffffff;
  --button-text-hover: #000000;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.theme--blue a:not(.button) {
  color: var(--theme-link);
}

.theme--blue-90 {
  --theme-bg: rgb(231.3, 231.4, 242.7);
  --theme-text: #000000;
  --theme-link: #121384;
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #ffe500;
  --button-text-hover: #121384;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.theme--blue-90 a:not(.button) {
  color: var(--theme-link);
}

.theme--yellow {
  --theme-bg: #ffe500;
  --theme-text: #121384;
  --theme-link: #121384;
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #ffffff;
  --button-text-hover: #000000;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.theme--yellow a:not(.button) {
  color: var(--theme-link);
}

.sub-theme--white {
  --theme-bg: #ffffff;
  --theme-text: #000000;
  --theme-link: #121384;
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #ffe500;
  --button-text-hover: #121384;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.sub-theme--white a:not(.button) {
  color: var(--theme-link);
}

.sub-theme--blue {
  --theme-bg: #121384;
  --theme-text: #ffffff;
  --theme-link: #ffffff;
  --button-bg: #ffe500;
  --button-text: #121384;
  --button-bg-hover: #ffffff;
  --button-text-hover: #000000;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.sub-theme--blue a:not(.button) {
  color: var(--theme-link);
}

.sub-theme--blue-90 {
  --theme-bg: rgb(231.3, 231.4, 242.7);
  --theme-text: #000000;
  --theme-link: #121384;
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #ffe500;
  --button-text-hover: #121384;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.sub-theme--blue-90 a:not(.button) {
  color: var(--theme-link);
}

.sub-theme--yellow {
  --theme-bg: #ffe500;
  --theme-text: #121384;
  --theme-link: #121384;
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #ffffff;
  --button-text-hover: #000000;
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
.sub-theme--yellow a:not(.button) {
  color: var(--theme-link);
}