﻿.cookies_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.cookies_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cookies {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cookies_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cookies_header_title {
    width: 100%;
}

.cookies_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cookies_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.cookies_section_title {
    width: 100%;
}

.cookies_section_description {
    width: 100%;
}

.cookies_section_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 36px;
    list-style: disc;
}

    .cookies_section_list li {
        width: 100%;
    }

.cookies_section_sub_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 36px;
    list-style: circle;
}

    .cookies_section_sub_list li {
        width: 100%;
    }
