.fixed { position: fixed; }
.absolute { position: absolute; }

.grid { display: grid; }
.flex { display: flex; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.h-7 { height: 1.75rem; }
.w-7 { width: 1.75rem; }
.max-width-700 { max-width: 700px; }
.translate-50 { transform: translate(-50%, -50%); }
.left-50 { left: 50%; }
.right-4 { right:1rem; }
.top-4 { top:1rem; }
.top-50 { top: 50%; }
.z-50 { z-index: 50; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }

#select-language { backdrop-filter: blur(5px); }
#language-close { float: right; height: 30px;}
#language-close a { text-decoration: none; font-size: 16px; }
#language_alert_body { text-align: left; padding: 0px 20px 20px; }
#language_alert_body h1 { padding-top: 0; margin-top: 0; }
#language-popup-title { font-size: 18; line-height: 27px; font-weight: 500;}
#language-popup-msg { font-size: 12; line-height: 1.25rem; }
#language-popup-buttons { justify-content: flex-end; flex-direction: row; padding: 0px 20px 20px; }
#save-lang-prefs:hover { background-color: hsl(219.07 93.48% 63.92% / 0.9); }
#clear-lang-prefs:hover { background-color: var(--muted);}

.focus-outline:focus { outline: 2px solid var(--ring); outline-offset: 2px; box-shadow: none; text-decoration: none; transition: background-color 300ms ease, border-color 300ms ease; }
.opacity-70 { opacity:.7; }
.ring-offset-background{ background-color: hsl(var(--background)); }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .15s; }
.hover\:opacity-100:hover { opacity: 1; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.border-none { border-style: none; }
.focus\:ring-ring:focus { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; }
.disabled\:pointer-events-none:disabled { pointer-events: none; }