/* ============================================
   Animations
   ============================================ */
:root {
  --cubic-default: cubic-bezier(0.625, 0.05, 0, 1);
  --cubic-bounce: linear(0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%, 1.0011 81.26%, 1);

  --duration-default:         0.6s;
  --duration-default-half:    0.3s;
  --duration-default-double:  1.2s;

  --animation-default:        var(--duration-default) var(--cubic-default);
  --animation-default-half:   var(--duration-default-half) var(--cubic-default);
  --animation-default-double: var(--duration-default-double) var(--cubic-default);
  --animation-ease:           0.2s ease;
  --animation-ease-double:    0.4s ease;
}

/* ============================================
   RGB Colors (for rgba() transparency)
   ============================================ */
:root {
  --color-rgb-green:    0, 61, 56;
  --color-rgb-bg-light: 238, 243, 244;
}