.cookies-page {
    padding: 100px;
}

.cookies-page p {
    margin: 20px 0;
}

.cookies-page strong {
    font-weight: 600;
}

.cookies-page ul {
    padding-left: 30px;
    list-style: disc;
}

.cookies-page ul li {
    margin: 10px;
}

.cookies-page table td {
    border: 1px solid #c1c1c1;
    padding: 10px;
}

#cookie-policy {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 100px;
    color: #00226B;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 50;

    transition: all 0.5s;
}

.roll-down {
    transform: translateY(300px);
}

#cookie-policy .container {
    max-width: 1120px;
    height: 100%;
    margin: auto;
}

.cookie-policy {
    display: flex;
    flex-direction: row;
    height: 100px;
    justify-content: space-between;
    align-items: center;
}

.cookie-policy__title {
    font-size: 36px;
    line-height: 24px;
    margin-bottom: 15px;
}

.cookie-policy__handler button {
    width: 120px;
    height: 42px;
    margin-right: 20px;
    font-weight: 600;
    color: white;
    border: 2px solid #00226B;
    background-color: #00226B;
}

.cookie-policy__handler a {
    position: relative;
    color: #00226B;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
}

.cookie-policy__handler a::after {
    position: absolute;
    content: '';
    top: 50%;
    right: -35px;
    width: 31px;
    height: 8px;
    transform: translateY(-50%);
    background-image: url(../img/arrow-right.svg);
}