#weather-notice,
#cookie-notice {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	max-width: 450px;
	margin: auto;
	padding: 0.5rem;
	border: 1px solid #eee;
	background-color: #fefefe;
	box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.05);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 22px;
	font-size: 15px;
	text-align: center;
	color: #555;
}
.cookie-notice-more {
	margin: 0 0.25rem;
	text-decoration-style: dashed;
	color: inherit;
}

#weather-notice {
	top: 50%;
	left: 50%;
  	transform: translate(-50%, -50%);
	width: 90%;
  	max-width: 450px;
	flex-direction: column;
  	gap: 16px;
	background-color: #ffffff;
	color: #333333;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	font-family: system-ui, -apple-system, sans-serif;
	line-height: 1.5;
}

.weather-notice-close,
.cookie-notice-close {
	padding: 0 0.5rem;
	border: 1px solid #ddd;
	border-radius: 0.125rem;
	line-height: 20px;
	text-decoration: none;
	color: #888;
}

.weather-notice-close {
	display: block;
  	text-align: center;
  	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	margin-top: auto; /* Pushes the anchor to the absolute bottom of the flex container */
  	transition: background-color 0.2s ease;
}
.weather-notice-close:hover,
.cookie-notice-close:hover {
	cursor: pointer;
}
	
@media only screen and (min-width: 768px) {
	#weather-notice,
	#cookie-notice {
		bottom: 2rem;
		border-radius: 0.25rem;
	}
	.weather-notice-close,
	.cookie-notice-close {
		float: right;
	}
}

/* slider pagination */
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 28px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 28px));
	color: white;
    font-weight: 600;
    opacity: 1;
    line-height: 1.7;
}
.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, #ff6600);
}
/* end slider pagination */