html {
  box-sizing: border-box;
}

/*  box-sizing унаследуется от html */
*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

*:focus,
* *:focus {
  outline: none;
}

/* ПРИЖАТТЯ ФУТЕРА ДО ДОЛУ */
html,
body {
  height: 100%;
}

header {
  flex-shrink: 0;
}
main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

/* СКИДАННЯ СТИЛІВ МЕНЮ ТА ПОСИЛАНЬ */
a {
  text-decoration: none;
}

li {
  list-style: none;
}


img,
a:focus {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}


figure {
  margin: 0;
}

/* Drupal */
#drupal-live-announce {
    display: none;
}

b,
strong {
  font-weight: 600;
}



.block:hover .contextual {
  display: block !important;
}


/* Table Default
*************************** */
table {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

details summary::-webkit-details-marker {
  display:none;
}

p {
  margin-top: 0;
}
