@charset "UTF-8";
/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS
- Primary: #1A5AD9
- Tints (淺色調):
#D5D4FF


- Shades (深色調): 
#08a679

- Accents (強調色): #0ACF97
- Greys (灰色調)

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 3.2px
Medium: 15px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
:root {
  --islogin-height: 2rem + 1.6rem;
}

.cookie-consent {
  position: fixed;
  z-index: 999;
}

.cookie-mask {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(43, 43, 43, 0.5);
}

.cookie-banner {
  width: 100%;
  padding: 1.2rem 5.4rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: rgba(43, 43, 43, 0.8);
  box-shadow: 0 4rem 8rem rgba(43, 43, 43, 0.5);
  backdrop-filter: blur(48px);
  z-index: 10000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.btn-close--hasText {
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 300;
  border: 1px solid #fff;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  padding: 0.4rem 1.6rem;
  border-radius: 100px;
  transition: all 0.2s;
}
.btn-close--hasText:hover {
  background-color: #888;
}
