@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');


:root {
--cookie-font: 'Itim', sans-serif;
--cookie-dark: #02253D;
--cookie-cyan: #00c6e8;
--cookie-green: #b8ef62;
--cookie-gradient: linear-gradient(
90deg,
#00c6e8 0%,
#6de9b5 50%,
#b8ef62 100%
);
}

@font-face {
font-family: "Galano Regular";
font-weight: 100;
font-display: auto;
src: url("/-global-assets/fonts/GalanoGrotesqueRegular.otf")
format("OpenType");
}


/* =========================================================
OVERLAY
========================================================= */

.cookie-overlay {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
background: rgba(4, 35, 53, 0.94);
opacity: 0;
visibility: hidden;
transition:
opacity 0.3s ease,
visibility 0.3s ease;
z-index: 99998;
}

.cookie-overlay.visible {
opacity: 1;
visibility: visible;
}


/* =========================================================
BANNER
========================================================= */

.cookie-banner {
position: fixed;
left: 50%;
top: 50%;
transform:
translate(-50%, -50%)
scale(0.96);
width: min(720px, calc(100% - 30px));
box-sizing: border-box;
padding: 2px;
border-radius: 17px;
background: var(--cookie-gradient);
opacity: 0;
visibility: hidden;
transition:
opacity 0.3s ease,
visibility 0.3s ease,
transform 0.3s ease;

z-index: 99999;
}

.cookie-banner.visible {
opacity: 1;
visibility: visible;
transform:
translate(-50%, -50%)
scale(1);
}


/* =========================================================
INNER WHITE BOX
========================================================= */

.cookie-banner-inner {
position: relative;
width: 100%;
min-height: 400px;
box-sizing: border-box;
padding: 32px 45px 28px;
background: #ffffff;
border-radius: 15px;
font-family: var(--cookie-font);
color: var(--cookie-dark);
}


/* =========================================================
HEADER
========================================================= */

.cookie-header {
text-align: center;
}

.cookie-header h2 {
margin: 0 0 9px;
font-family: var(--cookie-font);
font-size: 32px;
line-height: 1.15;
font-weight: 400;
letter-spacing: 0.2px;
color: var(--cookie-dark);
}

.cookie-header p {
margin: 0;
font-family: var(--cookie-font);
font-size: 16px;
line-height: 1.5;
font-weight: 400;
color: var(--cookie-dark);
}


/* =========================================================
DIVIDER
========================================================= */

.cookie-divider {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
margin: 25px auto 21px;
gap: 17px;
}

.cookie-divider span {
display: block;
height: 1px;
flex: 1;
max-width: 208px;
background: #e3e3e3;
}


/* =========================================================
SHIELD
========================================================= */

.cookie-shield {
width: 27px;
height: 27px;
flex: 0 0 27px;
display: flex;
align-items: center;
justify-content: center;
}

.cookie-shield img {
display: block;
width: 27px;
height: 27px;

object-fit: contain;
}


/* =========================================================
CHOICE AREA
========================================================= */

.cookie-choice-area {
display: grid;
grid-template-columns:
1fr
180px
1fr;
align-items: center;
width: 100%;
}


/* =========================================================
CHOICES
========================================================= */

.cookie-choice {
text-align: center;
}

.cookie-choice h3 {
margin: 0 0 7px;
font-family: var(--cookie-font);
font-size: 22px;
line-height: 1.2;
font-weight: 400;
color: var(--cookie-dark);
}

.cookie-choice p {
margin: 0 0 17px;
font-family: var(--cookie-font);
font-size: 14px;
line-height: 1.45;
color: var(--cookie-dark);
}


/* =========================================================
LEFT / RIGHT POSITIONING
========================================================= */

.cookie-choice-left {
padding-right: 12px;
}

.cookie-choice-right {
padding-left: 12px;
}


/* =========================================================
COOKIE IMAGE
========================================================= */

.cookie-image-wrap {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 180px;
height: 150px;
}

.cookie-image {
position: relative;
display: block;
width: 180px;
height: 180px;
object-fit: contain;
z-index: 2;
}

.cookie-lines {
position: absolute;
display: block;
object-fit: contain;
z-index: 3;
pointer-events: none;
}

.cookie-lines-blue {
width: 22px;
height: auto;
left: 0px;
top: 25px;
}

.cookie-lines-green {
width: 22px;
height: auto;
right: -10px;
bottom: 58px;
}

/* =========================================================
BUTTONS
========================================================= */

.cookie-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 110px;
height: 30px;
padding: 0 16px;
box-sizing: border-box;
border: 1px solid transparent;
border-radius: 20px;
color: #02253D;
font-family: "Galano Regular";
font-size: 14px;
font-weight: 400;
line-height: 1;
cursor: pointer;
transition:
background 0.25s ease,
border 0.25s ease,
box-shadow 0.25s ease,
transform 0.2s ease;
}

.cookie-btn-necessary {
background:
linear-gradient(#EFEFEF, #EFEFEF) padding-box,
linear-gradient(
90deg,
#00c6e8 0%,
#6de9b5 50%,
#b8ef62 100%
) border-box;
}

.cookie-btn-necessary:hover {
background:
linear-gradient(
90deg,
#00c6e8 0%,
#6de9b5 50%,
#b8ef62 100%
) padding-box;

border-color: transparent;
box-shadow: 0 4px 12px rgba(0, 198, 232, 0.18);
transform: translateY(-1px);
}

.cookie-btn-accept {
background:
linear-gradient(
90deg,
#00c6e8 0%,
#6de9b5 50%,
#b8ef62 100%
) padding-box;
border-color: transparent;
}

.cookie-btn-accept:hover {
background: #02253D;
border: none;
box-shadow: 0 4px 12px rgba(0, 198, 232, 0.12);
transform: translateY(-1px);
}

.cookie-btn-accept:hover span {
display: inline-block;
background-image: linear-gradient(
90deg,
#00c6e8 0%,
#6de9b5 50%,
#b8ef62 100%
);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}

.cookie-btn:active {
transform: translateY(0);
}

/* =========================================================
COOKIE POLICY
========================================================= */

.cookie-policy {
margin-top: 18px;
text-align: center;
}

.cookie-policy p {
margin: 0 0 2px;
font-family: var(--cookie-font);
font-size: 14px;
line-height: 1.4;
color: var(--cookie-dark);
}

.cookie-policy a {
font-family: var(--cookie-font);
font-size: 14px;
line-height: 1.4;
text-decoration: none;
color: var(--cookie-dark);
}

.cookie-policy a{
color: #06D1E5;
}
.cookie-policy a:hover {
  color: #02253D;
}

/* =========================================================
SITE LOCK
========================================================= */

html.cookie-lock,
body.cookie-lock {
overflow: hidden !important;
}

.cookie-btn:focus-visible {
outline: 2px solid #00bcd4;
outline-offset: 3px;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 700px) {

.cookie-banner {
width: calc(100% - 24px);
}

.cookie-banner-inner {
padding: 28px 25px 18px;
}

.cookie-choice-area {
grid-template-columns:
1fr
140px
1fr;
}

.cookie-image {
width: 125px;
height: 125px;
}

.cookie-image-wrap {
height: 135px;
}

}
/* =========================================================
MOBILE
========================================================= */

@media (max-width: 520px) {

.cookie-banner {
width: calc(100% - 20px);
max-height: calc(70vh - 20px);
overflow-y: auto;
}

.cookie-banner-inner {
padding: 42px 18px 18px;
}

.cookie-header h2 {
font-size: 20px;
line-height: 1.2;
}

.cookie-header p {
font-size: 10px;
line-height: 1.7;
}

.cookie-divider {
margin-top: 20px;
margin-bottom: 15px;
}

.cookie-choice-left {
padding-right: 5px;
}

.cookie-choice-right {
padding-left: 5px;
}

.cookie-choice h3 {
font-size: 16px;
}

.cookie-choice p {
font-size: 9px;
}

.cookie-btn {
min-width: 92px;
height: 28px;
padding: 0 11px;
font-size: 12px;
}

.cookie-choice-area {
grid-template-columns: 1fr 120px 1fr;
}
.cookie-image-wrap {
position: relative;
width: 120px;
height: 120px;
justify-self: center;
display: flex;
align-items: center;
justify-content: center;
}

.cookie-image {
width: 100px;
height: 100px;
position: relative;
left: auto;
right: auto;
margin: 0;
}

.cookie-lines-blue {
width: 16px;
left: 10px;
top: 22px;
}

.cookie-lines-green {
width: 16px;
right: 0px;
bottom: 38px;
}

.cookie-policy {
margin-top: 25px;
text-align: center;
}

.cookie-policy {
font-size: 14px;
}
}


/* =========================================================
VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

.cookie-banner-inner {
padding-left: 12px;
padding-right: 12px;
}

.cookie-choice-area {
grid-template-columns: 1fr 95px 1fr;
}

.cookie-image {
width: 92px;
height: 92px;
}

.cookie-image-wrap {
height: 105px;
}

.cookie-choice h3 {
font-size: 15px;
}

.cookie-btn {
min-width: 85px;
font-size: 10px;
}

}
