/* Estilos modernos para o popup de cookies */
.cookies-container {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   max-width: 500px;
   z-index: 9999;
}

.cookies-container.hidden {
	display: none;
}

.cookie-modal-backdrop {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 1050;
   display: flex;
   align-items: center;
   justify-content: center;
}

.cookie-modal-backdrop.hidden,
.cookies-container.hidden {
   display: none !important;
}

.bi-chevron-right {
   transition: transform 0.3s ease;
   rotate: 0deg;
}

.preference-cookie[aria-expanded="true"] .bi-chevron-right {
   transform: rotate(90deg);
}