/* Atomic Styles */

/* ///////////////////// */

/* ***** Font Colors */

/* --- Default */

.fcolor--dark {
  color: var(--color__dark);
}

.fcolor--light {
  color: var(--color__light);
}

/* --- Corporate */

.fcolor--primary {
  color: var(--color__primary);
}

.fcolor--secondary {
  color: var(--color__secondary);
}

.fcolor--accent {
  color: var(--color__accent);
}

.fcolor--grey {
  color: var(--color__grey);
}

/* --- System */

.fcolor--success {
  color: var(--color__success);
}

.fcolor--warning {
  color: var(--color__warning);
}

.fcolor--error {
  color: var(--color__error);
}

/* ***** Font Weights */

.fweight--black {
  font-family: "proximanova-black", sans-serif;
  font-weight: 800;
}

.fweight--bold {
  font-family: "proximanova-bold", sans-serif;
  font-weight: 700;
}

/* ***** Font Transforms */

.ftransform--uppercase {
  text-transform: uppercase;
}

/* ***** Background Colors*/

/* --- Default */

.bg--dark {
  background-color: var(--color__dark);
}

.bg--light {
  background-color: var(--color__light);
}

/* --- Corporate */

.bg--primary {
  background-color: var(--color__primary);
}

.bg--secondary {
  background-color: var(--color__secondary);
}

.bg--accent {
  background-color: var(--color__accent);
}

/* --- System */

.bg--success {
  background-color: var(--color__success);
}

.bg--warning {
  background-color: var(--color__warning);
}

.bg--error {
  background-color: var(--color__error);
}

/* ***** Borders */

.radius--small {
  border-radius: var(--radius__small);
}

.radius--regular {
  border-radius: var(--radius__regular);
}

.radius--large {
  border-radius: var(--radius__large);
}

.border--top {
  border-top: 0.2rem solid var(--color__primary);
}

/* ***** Box Shadow */

.shadow--small {
  box-shadow: var(--shadow__small);
}

/* ***** Overflows */

.overflow--hidden {
  overflow: hidden;
}

/* ***** Height */

.height--full {
  height: 100%;
}

/* ***** Fixed Ratios */

[class*="ratio--"] {
  position: relative;
  height: auto;
}

[class*="ratio--"]::before {
  display: block;
  content: "";
  width: 100%;
}

[class*="ratio--"] > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio--1_1::before {
  padding-top: calc(1 / 1 * 100%);
}

.ratio--3_2::before {
  padding-top: calc(2 / 3 * 100%);
}

.ratio--4_3::before {
  padding-top: calc(3 / 4 * 100%);
}

.ratio--6_4::before {
  padding-top: calc(4 / 6 * 100%);
}

.ratio--5_2::before {
  padding-top: calc(2 / 5 * 100%);
}

.ratio--8_2::before {
  padding-top: calc(2 / 8 * 100%);
}

.ratio--15_16::before {
  padding-top: calc(16 / 15 * 100%);
}

.ratio--14_16::before {
  padding-top: calc(16 / 14 * 100%);
}

.ratio--16_9::before {
  padding-top: calc(9 / 16 * 100%);
}

.ratio--5_3::before {
  padding-top: calc(3 / 5 * 100%);
}

.ratio--3_5::before {
  padding-top: calc(5 / 3 * 100%);
}

/* Animation */

.is-animating,
.no-pointer {
  pointer-events: none;
}

/* Text */

.centered-text,
.centered-text *,
.centered-text-xl,
.centered-text-xl * {
  text-align: center;
}

.lefted-text,
.lefted-text *,
.lefted-text-xl,
.lefted-text-xl * {
  text-align: left;
}

.righted-text,
.righted-text *,
.righted-text-xl,
.righted-text-xl * {
  text-align: right;
}

@media only screen and (max-width: 80em) {
  .centered-text-lg,
  .centered-text-lg * {
    text-align: center;
  }
  .lefted-text-lg,
  .lefted-text-lg * {
    text-align: left;
  }
  .righted-text-lg,
  .righted-text-lg * {
    text-align: right;
  }
}

@media only screen and (max-width: 55em) {
  .centered-text-md,
  .centered-text-md * {
    text-align: center;
  }
  .lefted-text-md,
  .lefted-text-md * {
    text-align: left;
  }
  .righted-text-md,
  .righted-text-md * {
    text-align: right;
  }
}

@media only screen and (max-width: 36em) {
  .centered-text-sm,
  .centered-text-sm * {
    text-align: center;
  }
  .lefted-text-sm,
  .lefted-text-sm * {
    text-align: left;
  }
  .righted-text-sm,
  .righted-text-sm * {
    text-align: right;
  }
}

@media only screen and (max-width: 27em) {
  .centered-text-xs,
  .centered-text-xs * {
    text-align: center;
  }
  .lefted-text-xs,
  .lefted-text-xs * {
    text-align: left;
  }
  .righted-text-sm,
  .righted-text-xs * {
    text-align: right;
  }
}
