/* PAULA */

/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.dev.copilot.events/kaffkiez/fonts/open-sans-v35-latin/open-sans-v35-latin-regular.woff2")
    format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("https://static.dev.copilot.events/kaffkiez/fonts/open-sans-v35-latin/open-sans-v35-latin-600.woff2")
    format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("https://static.dev.copilot.events/kaffkiez/fonts/open-sans-v35-latin/open-sans-v35-latin-700.woff2")
    format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-family: "columbia-serial-heavyregular";
  src: url("https://static.dev.copilot.events/kaffkiez/fonts/columbia/columbia-serial-heavy-regular-webfont.woff2")
      format("woff2"),
    url("https://static.dev.copilot.events/kaffkiez/fonts/columbia/columbia-serial-heavy-regular-webfont.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Start Config */

:root {
  --bg: rgb(0, 0, 0);
  --darkfont: rgb(0, 0, 0);
  --brandColor: #08c924;
  --buttonBackground: linear-gradient(
    245deg,
    rgba(8, 201, 36, 1) 65%,
    rgba(109, 232, 126, 1) 100%
  );
  --buttonTextColor: black;
  --buttonRadius: 1px;
  --fontColor: white;
  --fontFamilySpecial: "columbia-serial-heavyregular";
}

#logo img {
  width: 100%;
}

.body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 150px;
}

html,
body,
pre {
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: 15px;
  line-height: 1.42857143;
}

body,
.bg-light {
  background: var(--bg) !important;
}

html,
body,
div,
p,
pre {
  font-family: "Open Sans", sans-serif;
  color: var(--fontColor);
}

.btn {
  background: var(--buttonBackground) !important;
  text-decoration: none !important;
  color: var(--buttonTextColor) !important;
  border-radius: var(--buttonRadius) !important;
  text-transform: uppercase;
  font-weight: bold;
}

.modal-content {
  color: var(--fontColor);
  background-color: var(--bg);
  border: 1px solid white;
  border-radius: var(--bs-modal-border-radius);
}

/* End Config */

hr {
  height: 1px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #000000;
}

.navbar {
  display: none;
}

/* ----------------------------- */
/* ---------- LAYOUT ----------- */
/* ----------------------------- */

body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 150px;
}

footer {
  background-color: #303030;
  display: grid;
  grid-template-areas:
    "socialicons socialicons"
    "legal service";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}

@media (min-width: 600px) {
  footer {
    grid-template-areas:
      "legal socialicons service"
      "legal socialicons service";
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr;
  }
}

.legal {
  grid-area: legal;
}

.service {
  grid-area: service;
}

.socialicons {
  grid-area: socialicons;
}

footer h3 {
  font-family: milkerregular;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.2rem 0;
  padding: 0;
}

footer,
footer a {
  font-family: milkerregular;
  font-weight: normal;
  color: #ffffff !important;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

footer *:not(h3) {
  font-size: 10px;
}

.socialicons {
  gap: 1em;
}

.socialicons div {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.socialicons svg {
  color: white;
}

#cart {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

#BasketIconButton {
  font-size: 24px;
}

#logo {
  font-family: milkerregular;
  font-size: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -3px;
}

#logo a:hover,
#logo a:focus {
  text-decoration: none;
  color: #333 !important;
}

nav {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
}

section {
  margin: 20px;
  min-height: 400px;
}

.white {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(73deg)
    brightness(106%) contrast(109%);
}

.gray {
  filter: invert(11%) sepia(73%) saturate(20%) hue-rotate(329deg)
    brightness(93%) contrast(82%);
}

#Menu ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

#Menu > ul > li a {
  font-family: milkerregular, Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
  font-size: 14px;
  text-transform: uppercase;
  color: #333 !important;
}

#Menu > ul {
  height: auto;
  justify-content: flex-end;
}

#Menu > ul > li {
  margin-left: 20px;
}

#Menu > ul > li a:hover,
#Menu > ul > li a.active {
  color: #333 !important;
  text-decoration: none;
}

/* ----------------------------- */
/* ---------- CONTENT ---------- */
/* ----------------------------- */

a {
  color: #333 !important;
  font-weight: normal;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  text-transform: uppercase;
  font-size: 2em;
  color: #333;
  font-weight: normal;
  text-align: center;
  font-family: milkerregular;
}

input,
select,
textarea {
  font-family: milkerregular;
  border: 1px solid #d3d3d3;
  background: #f6f6f6;
  font-weight: normal;
  color: #555555;
  padding: 0 10px;
}

button[type="submit"],
input[type="submit"],
.btn-primary,
.btn-outline-primary,
.btn-outline-danger,
button {
  font-family: milkerregular;
  font-size: 0.7rem !important;
  background-color: rgb(156, 169, 165) !important;
  padding: 5px 9px !important;
  color: white !important;
  border: none !important;
  border-radius: 4px;
}

/* ------------------------- TICKET SHOP --------------------------- */

.navbar-nav li:first-of-type {
  display: none;
}

main h1 {
  text-align: left;
  display: none;
}

/* @media screen and (max-width:767px) {
  table tr > * {
    display: block;
    background: yellow;
  }

  table tr {
    display: table-cell;
  }
} */

/* .btn-outline-primary {
  background: none !important;
  color: #333 !important;
} */

input::placeholder {
  color: rgb(156, 169, 165) !important;
}

.btn-outline-primary:hover,
.btn:hover {
  background-color: #3a3a3a !important;
  text-decoration: none !important;
}

#TicketForm .input-group-addon {
  border: 1px solid red !important;
  display: none;
}

#TicketForm .btn {
  margin-top: 0.4rem !important;
}

@media (min-width: 992px) {
  #TicketForm .col-lg-6 {
    flex: 0 0 auto;
    width: 63.33% !important;
  }

  #TicketForm .col-lg-4 {
    flex: 0 0 auto;
    width: 20% !important;
  }
}

main > div {
  max-width: 900px !important;
}

.btn-close {
  /* background: none !important;
  color: #333 !important; */
}

.font-monospace {
  font-family: "Open Sans", sans-serif !important;
  font-weight: normal;
}

h2 {
  font-family: milkerregular;
  color: #333;
}

.form-check {
  display: flex;
  gap: 0.5rem;
}

main {
  padding-bottom: 4rem;
}
