html{box-sizing:border-box;}
*,*::before,*::after{box-sizing:inherit;}
body{margin:0;padding:0;font-family:"IBM Plex Sans", sans-serif;}
.cookies {
    position: fixed;
    left: 2.29rem;
    right: 2.29rem;
    bottom: 1.5rem;
    z-index: 1200;
}
:root {
  --tone-cool: #1E3A5F;
  --tone-page: #FFFFFF;
  --ease-soft: cubic-bezier(0.2,0.8,0.2,1);
}

.cookies .list {
    margin-left: auto;
    max-width: 440px;
    border-radius: 1.26rem;
    padding: 1.5rem 2.29rem;
    background: radial-gradient(circle at top right, #FF6B5E, #1E3A5F);
    color: #FFFFFF;
    box-shadow: 0 18px 32px rgba(0,0,0,0.21);
    border: 1px solid rgba(148, 163, 184, 0.35);
}
.cookies .strong-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cookies .strong-block strong {
    font-size: 16px;
}
.cookies .strong-block a {
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 13px;
}
.cookies p {
    margin: 10px 0 0;
}
.cookies .open-form {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}
.cookies .open-form button {
    flex: 1;
    border-radius: 0.31rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 9px 12px;
    color: #FFFFFF;
    background: rgba(51, 65, 85, 0.65);
    cursor: pointer;
}
.cookies .open-form button.cookie-accept {
    background: #FFFFFF;
    border-color: transparent;
    color: #FF6B5E;
    font-weight: 700;
}
@media (max-width: 760px) {
    .cookies .list {
        max-width: none;
    }
}
