﻿
@font-face {
    font-family: 'Graphic-regular';
    src: url('/fonts/Graphik-Regular-Web.woff2') format('woff2'), url('/fonts/Graphik-Regular-Web.woff') format('woff');
}

@font-face {
    font-family: 'Graphic-medium';
    src: url('/fonts/Graphik-Medium-Web.woff2') format('woff2'), url('/fonts/Graphik-Medium-Web.woff') format('woff');
}

@font-face {
    font-family: 'aleksei-bold';
    src: url('/fonts/Aleksei-Bold-Web.woff') format('woff');
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/Material-Symbols-Outlined.woff2) format('woff2');
}


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

:root {
    --accent-color--primary: #FCDE06;
    --base-color--canvas: black;
    --base-color--main: #FFF;
    --Shades-Shade-4: rgb(0,0,0, 0.9);
    --Light-shades-Light-Shade-4: #FFFFFFE5;
}

*, *::before, *::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

button {
    all: unset;
}

a {
    all: unset;
}

button:focus {
    outline: revert;
}

body {
    font-family: Graphic-regular;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin: unset;
}

ul li:not(:first-child) {
    padding-top: 16px;
}

ul {
    padding-inline-start: 24px;
}

.page {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 767px;
    align-items: flex-start;
    min-height: 100svh;
}

.back-container {
    position: absolute;
    top: 8px;
    left: 8px;
    cursor: pointer;
}

.back {
    display: flex;
    width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Regular-Button-Full-padding, 8px);
    justify-content: center;
    align-items: center;
    gap: var(--Regular-Button-Spacing, 12px);
    border-radius: var(--Regular-Button-Radius, 4px);
    color: white;
}

    .back:active {
        border-radius: 4px;
        background: var(--Light-shades-Light-Shade-2, rgba(255, 255, 255, 0.25));
    }

    .back:hover {
        border-radius: 4px;
        background: var(--Light-shades-Light-Shade-2, rgba(255, 255, 255, 0.25));
    }

    .back:focus {
        border-radius: 4px;
        box-shadow: inset 0 0 0 var(--Regular-Button-Text-Padding, 2px) var(--Accent-color-Primary, #FCDE06);
        background: var(--accent-shades-primary-10, rgba(252, 222, 6, 0.10));
    }

.left-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 150px;
    background-color: var(--Shades-Shade-4, rgba(0, 0, 0, 0.90));
    padding: 0px 32px 16px 32px;
    align-self: stretch;
}

    .left-content .welcome-text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    .left-content .welcome-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
    }

    .left-content .welcome-upper {
        color: var(--base-color--main);
        font-family: aleksei-bold;
        font-weight: 700;
        font-size: 64px;
        text-align: center;
        line-height: 0.8;
    }

        .left-content .welcome-upper .dot {
            color: var(--accent-color--primary);
        }

    .left-content .welcome-lower {
        display: none;
    }

.diagonal {
    height: calc(98px + (235 - 98) * ((100vw - 320px) / (767 - 320)));
    width: 100%;
    background: var(--Shades-Shade-4);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 0 0;
    padding: 0px 32px;
    align-self: stretch;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.large-text {
    color: var(--Shades-Shade-4, rgba(0, 0, 0, 0.90));
    font-family: Graphic-medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.small-text {
    color: rgba(0, 0, 0, 0.50);
}

.form {
    display: flex;
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
    gap: 12px;
    transition: all 0.5s ease;
}

    .form .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px 16px;
    }



.input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.input-field {
    display: flex;
    padding: 10.5px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    background: var(--base-color--main);
}

.input-button {
    display: flex;
    min-height: 40px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 4px;
    background: var(--Shades-Shade-4, rgba(0, 0, 0, 0.90));
    color: var(--base-color--main);
    text-transform: uppercase;
    cursor: pointer;
}

    .input-button:active {
        border-radius: var(--Regular-Button-Radius, 4px);
        background: linear-gradient(0deg, var(--Light-shades-Light-Shade-2, rgba(255, 255, 255, 0.25)) 0%, var(--Light-shades-Light-Shade-2, rgba(255, 255, 255, 0.25)) 100%), var(--Shades-Shade-4, rgba(0, 0, 0, 0.90));
    }

    .input-button:hover {
        border-radius: var(--Regular-Button-Radius, 4px);
        background: linear-gradient(0deg, var(--Light-shades-Light-Shade-1, rgba(255, 255, 255, 0.08)) 0%, var(--Light-shades-Light-Shade-1, rgba(255, 255, 255, 0.08)) 100%), var(--Shades-Shade-4, rgba(0, 0, 0, 0.90));
    }

    .input-button:focus {
        border-radius: var(--Regular-Button-Radius, 4px);
        box-shadow: inset 0 0 0 var(--Regular-Button-Text-Padding, 2px) var(--Accent-color-Primary, #FCDE06);
        background: linear-gradient(0deg, var(--accent-shades-primary-10, rgba(252, 222, 6, 0.10)) 0%, var(--accent-shades-primary-10, rgba(252, 222, 6, 0.10)) 100%), var(--Base-color-Main, #FFF);
        color: var(--base-color--canvas);
    }

.underline-text {
    color: var(--Shades-Shade-3, rgba(0, 0, 0, 0.50));
    font-family: Graphic-regular;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: underline;
    cursor: pointer;
}

a.underline-text.dark {
    color: var(--Dark-shades-Dark-Shade-4, rgba(0, 0, 0, 0.90));
}

.underline-text:Hover {
    color: rgba(0, 0, 0, 0.90);
}

.underline-text:focus {
    outline: 1px solid var(--Accent-color-Primary, #FCDE06);
    outline-offset: 2px;
    color: rgba(0, 0, 0, 0.50);
}

.gray-text {
    color: rgba(0, 0, 0, 0.50);
}

.logo {
    width: 72px;
    height: 69.12px;
    flex-shrink: 0;
    background: url(/images/logo.png) white 50% / contain no-repeat;
    bottom: 0;
    cursor: pointer;
}

    .logo:active {
        border-radius: 4px;
        background: linear-gradient(0deg, var(--Shades-Shade-2, rgba(0, 0, 0, 0.25)) 0%, var(--Shades-Shade-2, rgba(0, 0, 0, 0.25)) 100%), url(/images/logo.png) white 50% / contain no-repeat;
    }

    .logo:hover {
        border-radius: 4px;
        background: linear-gradient(0deg, var(--Shades-Shade-1, rgba(0, 0, 0, 0.10)) 0%, var(--Shades-Shade-1, rgba(0, 0, 0, 0.10)) 100%), url(/images/logo.png) white 50% / contain no-repeat;
    }

    .logo:focus {
        border-radius: 4px;
        box-shadow: inset 0 0 0 var(--Regular-Button-Text-Padding, 2px) var(--Accent-color-Primary, #FCDE06);
        background: linear-gradient(0deg, var(--accent-shades-primary-10, rgba(252, 222, 6, 0.10)) 0%, var(--accent-shades-primary-10, rgba(252, 222, 6, 0.10)) 100%), url(/images/logo.png) white 50% / contain no-repeat;
    }

.sign-out {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    bottom: 0;
    background-color: var(--Shades-Shade-4);
    width: 100%;
    height: 64px;
    gap: 24px;
    justify-content: space-between;
    padding: 0px 24px;
}

.sign-out-placeholder {
    height: 64px;
    width: 100%;
}

.sign-out-text {
    color: var(--Light-shades-Light-Shade-4, rgba(255, 255, 255, 0.90));
    text-overflow: ellipsis;
    overflow: hidden;
}

.sign-out-button {
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    justify-content: center;
    align-items: center;
    gap: var(--Regular-Button-Spacing, 12px);
    border-radius: var(--Regular-Button-Radius, 4px);
    box-shadow: inset 0 0 0 var(--Regular-Button-Text-Padding, 2px) var(--Light-shades-Light-Shade-2, rgba(255, 255, 255, 0.25));
    align-self: unset;
    min-width: 92px;
}

.sign-out-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.bold {
    text-overflow: ellipsis;
    overflow: hidden;
}

/*Validation start*/

.alert {
    display: flex;
    width: 100%;
    padding: 7px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background-color: #FF33001A;
    flex-direction: row;
}

    .alert .error-message {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 10px;
        align-self: stretch;
        flex-wrap: wrap;
        color: #FF3300;
    }

/*Validation end*/


/*Privacy Start*/

.page.privacy {
    display: flex;
    flex-direction: column;
}

.privacy-padding {
    padding: 56px var(--spacing-2403, 24px);
    display: grid;
    place-items: center;
    width: 100%;
    gap: 27px;
}

.privacy-upper-container {
    display: flex;
    padding: 72px var(--spacing-2403, 24px) 32px var(--spacing-2403, 24px);
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    height: 200px;
    width: 100%;
    background: var(--Shades-Shade-4, rgba(0, 0, 0, 0.90));
}

.privacy-grid-container {
    display: grid;
    place-items: center;
    width: 100%;
}


.privacy-statement {
    color: var(--Base-color-Main, #FFF);
    font-family: Graphic-medium;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    width: 100%;
    max-width: 700px;
}

.privacy-header {
    color: var(--Base-color-Contrast, #343434);
    font-family: Graphic-medium;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px
}

.privacy-header-title {
    color: #000;
    font-family: Graphic-medium;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.privacy-subheader-text {
    color: var(--Base-color-Contrast, #343434);
    font-family: Graphic-medium;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    align-self: stretch;
    max-width: 700px;
}

.privacy-text {
    color: var(--Base-color-Contrast, #343434);
    font-family: Graphic-regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.privacy-label-text {
    color: var(--Base-color-Contrast, #343434);
    font-family: Graphic-medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.privacy-content-container {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-direction: column;
}


.privacy-logo {
    width: 80px;
    height: 59.2px;
    flex-shrink: 0;
    position: absolute;
    background: url(/images/logo-negative.png) 50% / contain no-repeat;
    top: 8px;
    right: 0px;
    cursor: pointer;
}

    .privacy-logo:active {
        border-radius: 4px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%), url(/images/logo-negative.png) center/contain no-repeat;
    }


    .privacy-logo:hover {
        border-radius: 4px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url(/images/logo-negative.png) center/contain no-repeat;
    }


    .privacy-logo:focus {
        border-radius: 4px;
        box-shadow: inset 0 0 0 2px #FCDE06;
        background: linear-gradient(0deg, rgba(252, 222, 6, 0.1) 0%, rgba(252, 222, 6, 0.1) 100%), url(/images/logo-negative.png) center/contain no-repeat;
    }



.privacy-table-container {
    width: 100%;
    overflow-x: auto;
    max-width: 700px;
}

.privacy-table {
    width: 700px;
    table-layout: fixed;
    border-collapse: collapse;
    border-radius: 4px;
    border: 1px solid var(--Shades-Shade-3, rgba(0, 0, 0, 0.50));
}

    .privacy-table th {
        height: 52px;
        padding: 19px 16px;
        text-transform: uppercase;
        text-align: start;
        background: var(--Base-color-Canvas, #F0F0F0);
    }

    .privacy-table td {
        height: 52px;
        padding: 19px 16px;
        text-align: start;
    }

    .privacy-table tr:nth-child(odd) {
        background: var(--Base-color-Zebra, #F9F9F9);
    }

.privacy-list li:not(:first-child) {
    padding-top: unset;
}

.privacy-list {
    padding-inline-start: 40px;
    margin-block-start: unset;
    margin-block-end: unset;
}

/*Privacy End*/
