@font-face {
    font-family: 'Antonio Regular';
    src: url('../fonts/Antonio-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Titillium';
    src: url('../fonts/TitilliumWeb-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Titillium';
    src: url('../fonts/TitilliumWeb-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Titillium';
    src: url('../fonts/TitilliumWeb-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-white: hsl(0, 0%, 100%);
    --color-black: hsl(0, 0%, 0%);
    --color-green: hsl(97, 79%, 22%);
    --color-brown: hsl(44, 46%, 31%);
    --color-yellow: hsl(44, 74%, 53%);

    --color-green-brighter: hsl(95, 31%, 81%);
    --color-green-dark: hsl(from var(--color-green) h s calc(l - 5));
    --color-green-darker: hsl(from var(--color-green) h s calc(l - 10));
    --color-brown-brighter: hsl(from var(--color-brown) h s calc(l + 42));
    --color-brown-dark: hsl(from var(--color-brown) h s calc(l - 10));
    --color-yellow-brighter: hsl(from var(--color-yellow) h s calc(l + 42));
    
    --container-max: 180rem;
    --g-header-h: 11.6rem;

    --g-padding-ver: 1rem;
    --g-padding-hor: 6rem;
    --g-inner-pad: 3rem 1rem;
    
    --menu-duration: 0.2s;
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Titillium', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.content :where(h1,h2,h3,h4,h5,h6,p,ul,ol,.is-style-my-button-style-green,.is-style-my-button-style-brown,.wp-block-file) {
  margin: 0 0 2rem 0;
}

.content :where(h1,h2,h3,h4,h5,h6,p,ul,ol):last-child {
  margin-bottom: 0;
}

.content ol {
    padding-left: 2.2rem;
  }

.content  ul {
    padding-left: 1.7rem;
    list-style-type: disc;
}

.content :is(ul ul, ol ol) {
    margin: 0;
}

.content ul li::marker {
    color: var(--color-green);
    font-size: 1.6rem;
    vertical-align: middle;
}

.content p.has-background {
  padding: 1.25rem 1rem;
}


a {
    text-decoration: none;
    color: var(--color-black);
}

.content a {
    text-decoration: underline;
    color: var(--color-black);
}


.section-header, .slider-title {
    font-family: 'Antonio Regular',sans-serif;
    font-weight: 400; 
}

.section-header, .slider-title {
  text-transform: uppercase;
  color: var(--color-yellow);
}

.section-header {
    font-family: 'Antonio Regular',sans-serif;
    text-transform: uppercase;
    color: var(--color-yellow);
    font-weight: 400; 
    font-size: 4.2rem;
    margin: 0 0 4rem 0;
}

.subpage-header-time {
  margin: 0 0 1rem 0;
}

.slider-title {
  content: '';
    position: absolute;
    right: 0;
    bottom: 0.8rem;
    padding: 1rem 1rem;
    background-color: hsl(from var(--color-yellow) h s l / 0.9);
    z-index: 5;
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.5;
    text-transform: none;
    color: var(--color-white);
}

h2, h3, h4, h5, h6 {
    font-weight: 700;
}
  
h1 { font-size: 4.1rem; line-height: 1.0; }
h2 { font-size: 3.5rem; line-height: 1.1; }
h3 { font-size: 3.0rem; line-height: 1.2; }
h4 { font-size: 2.6rem; line-height: 1.3; }
h5 { font-size: 2.2rem; line-height: 1.4; }
h6 { font-size: 1.9rem; line-height: 1.5; }

.txt-center {
  text-align: center;
}

button, input, select, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button-fixed-pos {
    position: absolute;
    left: 0;
    bottom: -2.3rem;
    width: 100%;
}
  
.button, .is-style-my-button-style-green a, .is-style-my-button-style-brown a, .button-primary {
  position: relative;
  display: inline-block;
  max-width: max-content;
  padding: 1rem 4rem;
  border-radius: 45px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1.74;
}

.button-green, .is-style-my-button-style-green a, .button-primary {
    background-color: var(--color-green);
}

.button-brown, .is-style-my-button-style-brown a {
  background-color: var(--color-brown);
}

.hide, .pagination-dots.hide, .googlemaps-info.hide {
    display: none;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 2rem;
  transform: translate(-50%, -50%);
  background-color: var(--color-green);
  z-index: 100;
  border-radius: 50%;
}

.loader::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 26px;
  width: 26px;
  animation: loader 0.8s infinite linear;
  border: 4px solid var(--color-white);
  border-right-color: transparent;
  border-radius: 50%;
  z-index: 999;
}

@keyframes loader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.color-brown {
  color: var(--color-brown);
}

.color-green {
  color: var(--color-green);
}


.icon-ebok {
  fill: var(--color-green);
}

.icon-espoldzielnia{
  fill: var(--color-brown);
}

.container {
  /* inline-size: min(100% - 2rem, var(--container-max)); */
  max-width: var(--container-max);
  margin-inline: auto;
}

.pad-outer {
    padding: var(--g-padding-hor) var(--g-padding-ver);
}

.pad-outer-only-ver {
    padding: 0 var(--g-padding-ver);
}

.pad-inner {
    padding: var(--g-inner-pad);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-green-brighter);
  background-color: var(--color-white);
  width: 100%;
}

.header-grid {
  display: grid;
  grid-template-areas: "logo hamburger";
  grid-template-columns: 1fr auto;   /* OK */
  grid-template-rows: var(--g-header-h);
  height: var(--g-header-h);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.logo {
  display:block;
  grid-area: logo;
  padding: 0 0 0 2rem;
  align-self: center;
}

.logo svg{
  display:block;
  width:246px;
  height:auto;
}

.header-nav {
  position: fixed;
  top: var(--g-header-h);                    
  right: 0;
  width: 100vw;                              
  height: calc(100dvh - var(--g-header-h)); 
  display: grid;
  grid-template-areas:
    "menu"
    "login";
  grid-template-rows: max-content max-content;
  overflow-y: auto;
  background-color: var(--color-white);
  z-index: 9;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: none;
  will-change: transform;
}

.toggle .header-nav {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease;
    visibility: visible;
    pointer-events: auto; 
}

.menu {
  grid-area: menu;
  width: 100%;
  border-top: 1px solid var(--color-brown-brighter);     
}

.menu a {
    display: flex; 
    font-weight: 700;
    font-size: 2rem;   
    color: var(--color-green); 
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--color-brown-brighter);     
}

.menu .sub-menu a {
    line-height: 2;
    font-size: 1.8rem;
    padding: 1rem 2rem 1rem 3rem;
}

.menu .sub-menu .sub-menu a {
    padding: 1rem 2rem 1rem 4rem;
}

.menu-item-has-children > .sub-menu {
    display: none;
}

.menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.menu-item-has-children > a::after {
  content: "+";
  font-size: 1.8rem;
}

.menu-item-has-children.is-open > a::after {
  content: "−";
}

.menu .current-post-ancestor > a,
.menu .current-category-ancestor > a,
.menu .current_page_parent > a,
.menu .current-menu-item > a,
.menu > .current-page-ancestor > a,
.menu > .current-menu-ancestor > a,
.menu .sub-menu .current-menu-item a,
.menu > li .current-menu-parent > a 
  {
  background-color: var(--color-yellow-brighter);
}

.hamburger {
  grid-area: hamburger;
  position: relative;
  margin: 0 2rem;
  display: flex;
  align-self: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
}

.hamburger-items,
.hamburger-items::before, 
.hamburger-items::after {
  position: relative;
  width: 100%;
  height: 0.3rem;
  border-radius: 0.5rem;
  background-color: var(--color-green);
  transition: transform .3s ease-in-out;
}

.hamburger-items::before, 
.hamburger-items::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}

.hamburger-items::before { transform: translateY(8px); }
.hamburger-items::after  { transform: translateY(-8px); }

.toggle .hamburger-items       { transform: rotate(45deg); }
.toggle .hamburger-items::before { transform: rotate(90deg); }
.toggle .hamburger-items::after  { transform: rotate(0deg);  opacity: 0; }

.login-panel {
  grid-area: login;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-green);
  width: 100%;
  background-color: var(--color-yellow-brighter);
  padding: 0 var(--g-padding-ver) 0 0;
}

.login-item {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  line-height: 1.7;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--color-brown-brighter);
  min-height: 51px; 
}

.icon-size-small {
  margin:  0 0.5rem 0 0 ;
}

.carousel-counter-wrapper {
  position: relative;
  
}

.carousel-counter {
  position: absolute;
  left: 50%;
  top: -3rem;
  transform: translateX(-50%);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-brown);
}

.carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.6rem 0;
}

.carousel-inner {
  position: relative;
  height: 100%;
}

.section-items h3 {
  margin: 0 0 1rem 0;
  font-size: 2.2rem;
}

.section-items p {
  margin: 0 0 1rem 0;
}

time {
  color: var(--color-brown);
  display: block;
  margin: 0 0 1rem 0;
  font-weight: 700;
  font-size: 1.7rem;
}

.subpage-time {
  margin: 0 0 2.4rem 0;
}


.carousel-items, .grid-items {
  display: flex;
}

.carousel-item, .grid-item {
  position: relative;
  text-align: center;
}

.grid-border {
    background-color: var(--color-white);
    border-radius: 1rem;
    border: 1px solid var(--color-yellow);
}

.cat-badge {
  display: block;
}

.pagination {
  z-index: 5;
  pointer-events: none;
}

.pagination-arrow-l, 
.pagination-arrow-r {
  position: relative;
  cursor: pointer;
  pointer-events: all;
  padding: 2rem 2rem;
}

.pagination-arrow-l::before,
.pagination-arrow-r::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--color-white);
  border-left: 3px solid var(--color-white);
}

.pagination-arrow-l::before {
  left: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pagination-arrow-r::before {
  left: calc(50% - 3px);
  transform: translate(-50%, -50%) rotate(135deg);
}

.carousel-pagination .pagination-arrow-l, .carousel-pagination .pagination-arrow-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-green);
  border-radius: 0.5rem;
}

.carousel-pagination .pagination-arrow-l {
  left: 0;
}

.carousel-pagination .pagination-arrow-r {
  right: 0;
}

img, .vid {
  vertical-align: middle;   
  max-inline-size: 100%;    
  block-size: auto;  
}

.img-cover {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.block-el-center {
  display: block;
  margin-inline: auto; 
}

.icon-big {
  width: 4.25rem;
  height: auto;
}

.grid-auto {
  position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.grid-auto {
  position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.googlemaps-iframe  {
  position: relative;
  height: 430px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.googlemaps-iframe iframe {
    height: 100%;
    width: 100%;
    outline: none;
}

.googlemaps-img,
.googlemaps-info,
.goolemaps-info-txt  {
  position: absolute;
  top: 0;
  left: 0
}

.googlemaps-img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.googlemaps-info {
  height: 100%;
  width: 100%;
  background-color: var(--color-white);
  z-index: 1;
  display: flex;
  justify-content: center;
}

.goolemaps-info-txt {
  left: auto;
  background-color: var(--color-white);
  padding: 2rem; 
  border-radius: 1rem;
  z-index: 2;
  margin: 1rem;
}

.flex-space-between {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-parent {
  display: flex;
  flex-direction: column;
}

.flex-children {
  width: 100%;
}

.flex-align-items-center {
  align-items: center;
}

footer {
    padding: 1.6rem var(--g-padding-ver);
    background-color: var(--color-green);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.4rem;
  }

footer a {
    color: var(--color-white1);
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 25rem;
  background-color: var(--color-white);
}

.slider::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.8rem;
    background-color: var(--color-yellow);
    z-index: 5;
}

.slider-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1.2s; 
  opacity: 0; 
  backface-visibility:hidden;    
  -webkit-backface-visibility:hidden; 
}

.slider-image.cur {
    z-index: 1;
    opacity: 1;  
}

.slider-image.prev  {
    z-index: 0;
    opacity: 0;  
}

.pagination-dots {
  position: absolute;
  left: 2rem;
  bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 12;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 1rem;
  width: max-content;
  min-width: 1rem;
  min-height: 1rem;
  display: none;
}

.pagination-dots span {
  position: relative;
  display: inline-block;
  padding: 0.6rem;
  box-shadow: inset 0 0 0 7px var(--color-yellow);
  margin: 0 0.5rem;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
}

.pagination-dots .active {
  box-shadow: inset 0 0 0 3px var(--color-yellow);
}

.wp-pagination  {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    padding: 6.6rem 1rem 0 1rem;
}
  
.wp-pagination input[type="number"] {
    width: 60px; 
    height: 40px; 
    padding: 8px;
    border: 2px solid var(--color-yellow);
    border-radius: 1rem;
    font-size: 1.6rem;
    line-height: 100%;
    text-align: center;
}
  
.wp-pagination input[type="number"]::-webkit-outer-spin-button,
.wp-pagination input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
  
.wp-pagination input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
  
.wp-pagination input[type="number"]:focus {
    outline: auto;
}
  
.wp-pagination input[type="number"]:focus::placeholder {
    color: transparent;
}

.wp-block-table {
  margin: 0 0 2rem 0;
  border: none;
}

.has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}

.wp-block-table thead, .wp-block-table tfoot, .wp-block-table td {
    border: none;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table thead {
  display: none;
}

.wp-block-table tr {
  border-top: 1px solid var(--color-green);
  border-bottom: 1px solid var(--color-green);
}

.wp-block-table td {
  text-align: left;
  display: block;
  padding: 0.5rem 0;
}

.wp-block-table td::before {
  display: block;
  content: attr(data-label);
  text-transform: uppercase;
  color: var(--g-color-04);
  font-weight: 700;
  font-size: 1.8rem;
}

.wp-block-file a[href$=".pdf"], .wp-block-table a[href$=".pdf"] {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
    flex-grow: 0;
}
.wp-block-gallery img {
  margin-inline: auto;
}

.wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap !important;
}

.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}


.wp-block-embed__wrapper iframe {
  position: absolute; /* <-- kluczowe! */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wp-block-image {
  width: 100%;
}

.wp-block-image.alignright {
  text-align: right;
}

.wp-block-file a {
  font-size: 1.6rem;
  line-height: 2rem;
}


.wp-block-file a:is(
  [href$=".pdf" i],[href*=".pdf?" i],[href*=".pdf#" i],
  [href$=".doc" i],[href*=".doc?" i],[href*=".doc#" i],
  [href$=".docx" i],[href*=".docx?" i],[href*=".docx#" i],
  [href$=".dot" i],[href*=".dot?" i],[href*=".dot#" i],
  [href$=".dotx" i],[href*=".dotx?" i],[href*=".dotx#" i],
  [href$=".dotm" i],[href*=".dotm?" i],[href*=".dotm#" i],
  [href$=".rtf" i],[href*=".rtf?" i],[href*=".rtf#" i],
  [href$=".odt" i],[href*=".odt?" i],[href*=".odt#" i],
  [href$=".xls" i],[href*=".xls?" i],[href*=".xls#" i],
  [href$=".xlsx" i],[href*=".xlsx?" i],[href*=".xlsx#" i],
  [href$=".xlsm" i],[href*=".xlsm?" i],[href*=".xlsm#" i],
  [href$=".xlsb" i],[href*=".xlsb?" i],[href*=".xlsb#" i],
  [href$=".xlt" i],[href*=".xlt?" i],[href*=".xlt#" i],
  [href$=".xltx" i],[href*=".xltx?" i],[href*=".xltx#" i],
  [href$=".xltm" i],[href*=".xltm?" i],[href*=".xltm#" i],
  [href$=".xla" i],[href*=".xla?" i],[href*=".xla#" i],
  [href$=".xlam" i],[href*=".xlam?" i],[href*=".xlam#" i],
  [href$=".csv" i],[href*=".csv?" i],[href*=".csv#" i],
  [href$=".tsv" i],[href*=".tsv?" i],[href*=".tsv#" i],
  [href$=".ods" i],[href*=".ods?" i],[href*=".ods#" i]
) {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wp-block-file a:is(
  [href$=".pdf" i],[href*=".pdf?" i],[href*=".pdf#" i],
  [href$=".doc" i],[href*=".doc?" i],[href*=".doc#" i],
  [href$=".docx" i],[href*=".docx?" i],[href*=".docx#" i],
  [href$=".dot" i],[href*=".dot?" i],[href*=".dot#" i],
  [href$=".dotx" i],[href*=".dotx?" i],[href*=".dotx#" i],
  [href$=".dotm" i],[href*=".dotm?" i],[href*=".dotm#" i],
  [href$=".rtf" i],[href*=".rtf?" i],[href*=".rtf#" i],
  [href$=".odt" i],[href*=".odt?" i],[href*=".odt#" i],
  [href$=".xls" i],[href*=".xls?" i],[href*=".xls#" i],
  [href$=".xlsx" i],[href*=".xlsx?" i],[href*=".xlsx#" i],
  [href$=".xlsm" i],[href*=".xlsm?" i],[href*=".xlsm#" i],
  [href$=".xlsb" i],[href*=".xlsb?" i],[href*=".xlsb#" i],
  [href$=".xlt" i],[href*=".xlt?" i],[href*=".xlt#" i],
  [href$=".xltx" i],[href*=".xltx?" i],[href*=".xltx#" i],
  [href$=".xltm" i],[href*=".xltm?" i],[href*=".xltm#" i],
  [href$=".xla" i],[href*=".xla?" i],[href*=".xla#" i],
  [href$=".xlam" i],[href*=".xlam?" i],[href*=".xlam#" i],
  [href$=".csv" i],[href*=".csv?" i],[href*=".csv#" i],
  [href$=".tsv" i],[href*=".tsv?" i],[href*=".tsv#" i],
  [href$=".ods" i],[href*=".ods?" i],[href*=".ods#" i]
)::before {
  content: '';
  display: inline-block;
  min-width: 30px;
  width: 30px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.wp-block-file a:is([href$=".pdf" i],[href*=".pdf?" i],[href*=".pdf#" i])::before {
  background-image: url(../assets/icons/pdf.svg);
}

.wp-block-file a:is(
  [href$=".doc" i],[href*=".doc?" i],[href*=".doc#" i],
  [href$=".docx" i],[href*=".docx?" i],[href*=".docx#" i],
  [href$=".dot" i],[href*=".dot?" i],[href*=".dot#" i],
  [href$=".dotx" i],[href*=".dotx?" i],[href*=".dotx#" i],
  [href$=".dotm" i],[href*=".dotm?" i],[href*=".dotm#" i],
  [href$=".rtf" i],[href*=".rtf?" i],[href*=".rtf#" i],
  [href$=".odt" i],[href*=".odt?" i],[href*=".odt#" i]
)::before {
  background-image: url(../assets/icons/word.svg);
}

.wp-block-file a:is(
  [href$=".xls" i],[href*=".xls?" i],[href*=".xls#" i],
  [href$=".xlsx" i],[href*=".xlsx?" i],[href*=".xlsx#" i],
  [href$=".xlsm" i],[href*=".xlsm?" i],[href*=".xlsm#" i],
  [href$=".xlsb" i],[href*=".xlsb?" i],[href*=".xlsb#" i],
  [href$=".xlt" i],[href*=".xlt?" i],[href*=".xlt#" i],
  [href$=".xltx" i],[href*=".xltx?" i],[href*=".xltx#" i],
  [href$=".xltm" i],[href*=".xltm?" i],[href*=".xltm#" i],
  [href$=".xla" i],[href*=".xla?" i],[href*=".xla#" i],
  [href$=".xlam" i],[href*=".xlam?" i],[href*=".xlam#" i],
  [href$=".csv" i],[href*=".csv?" i],[href*=".csv#" i],
  [href$=".tsv" i],[href*=".tsv?" i],[href*=".tsv#" i],
  [href$=".ods" i],[href*=".ods?" i],[href*=".ods#" i]
)::before {
  background-image: url(../assets/icons/excel.svg);
}

.login-form, #esp-login-errors {
  width: 100%;
}

.login-form label {
  display: block;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 2rem 0.8rem;
  font-size: 1rem;
}

input[type=text],
input[type="password"]
{
    font-size: 1.6rem;
    vertical-align: middle;
    padding: 1.6rem 1.2rem;
    border: 1px solid hsl(from var(--color-yellow) h s calc(l + 5));
    background-color: hsl(from var(--color-yellow) h s calc(l + 45));
    width: 100%;
    border-radius: 5px;
    transition: background-color 0.5s ease;
    font-family: 'Roboto Regular', sans-serif;
}

input[type=text]:hover,
input[type=password]:hover,
input[type=text]:focus,
input[type=password]:focus
{
  background-color: var(--color-white);
  outline: none;
}

.login-submit {
  text-align: right;
}

#esp-login-errors {
  display: none;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: #ffeaea;
  color: #c00;
  border: 1px solid #dc3232;
  border-radius: 8px;
  font-size: 1.6rem;
}

.login-remember label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
  display: inline-grid;
  grid-template-columns: 2rem max-content;
  gap: 0.5em;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-white);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid var(--color-yellow);
  border-radius: 0.15em;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}



  @media (width < 600px) {
    .content .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
        width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) * .75);
    }
}

  @media (width >= 600px) and (width < 1239.98px) {
    .content .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
        width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px) * .75);
    }
}
