/* Minification failed. Returning unminified contents.
(22,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(23,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(56,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(66,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(79,52): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(114,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(115,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(132,70): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(134,70): run-time error CSS1039: Token not allowed after unary operator: '-brand-palegrey'
(136,76): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(147,34): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(154,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(170,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(171,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(175,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(176,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(181,34): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(230,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-palegrey'
(244,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(255,29): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(263,34): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(297,47): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
 */
/*.cookie-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 19999;
}*/

/* ---------- INITIAL COOKIE POPUP ---------- */
.initial-cookie-notice {
    display: none;
    top: 1rem;
    left: calc(50% - 10.5rem);
    width: 18rem;
    position: fixed;
    z-index: 20000;
    background-color: var(--brand-pale-white);
    color: var(--brand-off-black);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
}

/* ---------- SHARED ON BOTH INITIAL & CUSTOM POPUPS ---------- */
.cookie-notice-title {
    font-size: 2rem;
    margin: 0;
    display: flex;
    justify-content: center;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-notice-title::before {
    content: ' ';
    display: inline-block;
    height: 2rem;
    width: 2rem;
    background: url('/assets/img/icons/icon-cookie-blk.svg') no-repeat;
    margin-right: 0.5rem;
}

.cookie-notice-description p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.1rem;
    text-align: center;
}

.cookie-notice-description p a {
    color: var(--brand-off-black);
    font-weight: 500;
    position: relative;
}

.cookie-notice-description p a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--brand-purple);
    bottom: -0.1rem;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.cookie-notice-description p a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.cookie-notice-description p a:hover { color: var(--brand-purple); }

/* ---------- BUTTONS ---------- */
.initial-cookie-btn {
    padding: 1rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
    bottom: 1.5rem;
}

.custom-cookie-btn {
    display: flex;
    justify-content: flex-end;
    right: 1.5rem;
    margin-top: 1.5rem;
}

.accept-close-btn {
    grid-column: 2;
    width: 150px;
    justify-self: end;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
}
/* ---------- END SHARED ON BOTH INITIAL & CUSTOM POPUPS ---------- */

/* ---------- CUSTOM COOKIE POPUP ---------- */
.custom-cookie-notice {
    display: none;
    top: 1rem;
    left: calc(50% - 10.5rem);
    width: 18rem;
    position: fixed;
    z-index: 21000;
    background-color: var(--brand-pale-white);
    color: var(--brand-off-black);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
}

.cookie-scroll-bar {
    padding-right: 0.25rem;
    overflow: auto;
}

.custom-cookie-notice .cookie-scroll-bar { height: calc(70vh - 3rem); }

.cookie-scroll-bar::-webkit-scrollbar {
    width: 0.3rem;
    border-radius: 0.5rem;
}

.cookie-scroll-bar::-webkit-scrollbar-track { background-color: var(--brand-pale-white); }

.cookie-scroll-bar::-webkit-scrollbar-thumb { background-color: var(--brand-palegrey); }

.cookie-scroll-bar::-webkit-scrollbar-thumb:hover { background-color: var(--brand-gray); }

/* ---------- COOKIE SETTINGS  ---------- */
.cookie-container { display: grid; }

.cookie-container td {
    font-weight: 300;
}

/* ---------- COOKIE SETTINGS LINKS ---------- */
.cookie-link-container {
    border-top: 1.5px solid var(--brand-off-black);
    padding: 1rem 0.5rem;
}

.cookie-link-container .cookie-links {
    cursor: pointer;
    display: block;
    color: var(--brand-off-black);
    transition: all .4s ease-in-out;
    box-shadow: none;
    border-radius: 0.5rem;
    text-align: left;
    font-size: 0.85rem;
    border: none;
    padding: 0.4rem 0.25rem;
    width: 100%;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.cookie-link-container .cookie-links:hover,
.cookie-link-container .cookie-links:focus {
    background-color: var(--brand-off-black);
    color: var(--brand-pale-white);
}

.cookie-link-container .cookie-links.active {
    background-color: var(--brand-off-black);
    color: var(--brand-pale-white);
}

/* ---------- COOKIE SETTINGS CONTENT ---------- */
.cookie-content {
    border-top: 1.5px solid var(--brand-off-black);
    text-align: left;
    padding: 1rem 0.5rem 0;
    animation: opac 0.8s;
    font-size: 0.85rem;
}

.cookie-notice-switch {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 1rem;
}

.cookie-notice-switch p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
}

.cookie-notice-switch img {
    width: 1.7rem;
    height: 1.7rem;
}

/* ---------- MAIN SWITCH ---------- */
.cookie-switch {
    position: relative;
    width: 2.5rem;
    height: 1.5rem;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}

/* ---------- SLIDER ---------- */
.cookie-essential { display: none; }

.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--brand-palegrey);
    transition: all .4s ease-in-out;
    border-radius: 2.2rem;
}

/* ---------- SLIDER DOT ---------- */
.cookie-switch-slider:before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    top: 0.25rem;
    left: 0.25rem;
    bottom: 0.15rem;
    background-color: var(--brand-pale-white);
    transition: all .4s ease-in-out;
    border-radius: 50%;
}

input:checked + .cookie-switch-slider { background-color: #4CBB17; }

input:checked + .cookie-switch-slider::before { transform: translateX(1rem); }

input:checked:focus + .cookie-switch-slider,
input:focus + .cookie-switch-slider {
    outline: 1px solid var(--brand-purple);
    transition: outline 0.2s ease;
    outline-offset: 2px;
}

/* ---------- COOKIE SETTINGS CONTENT TABLE ---------- */
.cookie-content table {
    width: 100%;
    border-top: 1.2px solid var(--brand-off-black);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.75rem;
}

.cookie-content table th {
    display: block;
    padding: 0.5rem 0;
    font-weight: 400;
}

.cookie-content table tr .expiration-date { display: none; }

.cookie-content table tr th { display: none; }

.cookie-content table tr td {
    display: block;
    padding: 0.5rem 0;
}

.cookie-content table tr td:before {
    font-weight: 400;
    padding-right: 0.5rem;
}

.cookie-content table tr td:nth-of-type(1):before { content: "Name"; }
.cookie-content table tr td:nth-of-type(2):before { content: "Expiration"; }
.cookie-content table tr td:nth-of-type(3):before { content: "Description"; }

.cookie-content table tr td p { margin-bottom: 0.75rem; }

.cookie-content table tr td p:last-child { margin-bottom: 0; }

.row-border-line { border-top: 1px solid var(--brand-off-black); }
/* ---------- END COOKIE SETTINGS CONTENT ---------- */

@keyframes opac {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media only screen and (min-width: 36rem) {

    .custom-cookie-notice {
        left: calc(50% - 16.5rem);
        width: 30rem;
    }
}

@media only screen and (min-width: 50rem) {

    .initial-cookie-notice, .custom-cookie-notice {
        left: calc(50% - 19.5rem);
        width: 36rem;
    }

    .cookie-container { grid-template-columns: 12rem 1fr; }

    .cookie-content table thead tr {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
    }

    .cookie-content table thead tr th { display: inline-flex; }

    .cookie-content table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
        gap: 0.5rem;
    }

    .cookie-content table tr .expiration-date { display: block; }

    .description-col { vertical-align: top; }

    .cookie-content table tr td { padding-left: 0; }

    .cookie-content table tr td:before { display: none; }
}

@media only screen and (min-width: 75rem) {

    .custom-cookie-notice {
        left: calc(50% - 28.5rem);
        width: 54rem;
    }

    .custom-cookie-btn { margin: 0.5rem 0; }
}

@media only screen and (min-width: 21.875rem) and (max-width: 59.375rem) and (orientation: landscape) {

    .initial-cookie-notice .cookie-scroll-bar, 
    .custom-cookie-notice .cookie-scroll-bar {
        height: 50vh;
    }

}

