/*
Theme Name: Boo
Version: 2.5
License: GNU General Public License
License URI: license.txt
Text Domain: boo
*/
/*--------------------------------------------------------------
Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* COOKIE BANNER  */
:root{
  --rir-primary:#0b4b78;
  --rir-light:#eaf6ff;
  --rir-text:#000;
  --rir-a: #337ab7;
  --rir-radius:12px;
}

.rir-cookie{
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 1000;
  background: var(--rir-light);
  border-radius: var(--rir-radius);
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(11,75,120,0.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .26s ease, transform .26s ease, visibility .26s;
}

.rir-cookie.rir-cookie--visible{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.rir-cookie__text{
  color: var(--rir-text);
  line-height: 1.4;
  text-align: left;
  max-width: 1000px;
}

.rir-cookie__btn{
  background: var(--rir-primary);
  color: #fff;
  border: none;
  padding: 5px 28px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
}
.rir-cookie__link{
	color: var(--rir-a);
}
@media (max-width:768px){
  .rir-cookie{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    left: 12px;
    right: 12px;
    bottom: 14px;
    padding: 14px;
  }
  .rir-cookie__btn{
    padding: 5px 28px;
    font-size: 15px;
    align-self: center;
  }
}