/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/*
 * Variables
 */
:root {
  /* COLORS */

  --primary-color: #010000;
  --primary-color-contrast: #fff;
  --primary-color-shade: #010000;
  --primary-color-tint: #eeeeee;

  --secondary-color: #f3e600;
  --secondary-color-contrast: #000;
  --secondary-color-shade: #f3e600;
  --secondary-color-tint: #f1e832;

  --background-color: white;
  --text-color: #0F0F0F;
  --link-text-color: #00e;

  --border-radius: 3rem;


  /* FONTS */
  --primary-font-family: 'Titillium Web', sans-serif;
  --secondary-font-family: 'Titillium Web', sans-serif;
}

a,
.my-env a {
  color: var(--link-text-color);
  text-decoration: none;
}

a:hover,
.my-env a:hover {
  text-decoration: underline;
  color: var(--link-text-color);
}

.btn-secondary,
.my-env .btn-secondary {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color-contrast);
}

.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:focus,
.btn-secondary:hover,
.my-env .btn-secondary:hover {
  background-color: var(--secondary-color-contrast);
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.table {
  margin-top: 15px;
}

.header-inner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
}

.header-inner-container>* {
  max-width: 65%;
}
@media all and (max-width: 826px) {
  .header-inner-container>* {
    max-width: 100%;
  }
}
.website-sponsors-list .lead {
  display: none;
}

.link a {
  color: #ffffff;
  text-decoration: none;
}

.link a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.link2 a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.link2 a:hover {
  color: #fff;
  text-decoration: underline;
  text-transform: uppercase;
}

.rounded-corners {
  border-radius: 3rem;
}

/*Kalender items*/
.calendar-event-date,
.calendar-event-time {
  display: inline;
  font-family: "Novecento sans Bold", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--primary-color-contrast);
}

.calendar-event-date:first-letter {
  text-transform: capitalize;
}

.calendar-event-time::before {
  content: "van ";
}

.calendar-event-title {
  font-size: 1.1rem;
  font-weight: 700;
}