* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    scrollbar-width: thin;
    scrollbar-color: var(--grey--grey30) transparent;
}

body {
    margin: 0;
    background: var(--grey--grey90);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    color: var(--black--black10);
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    flex: 1;
}

.content {
    margin-top: 40px;
    margin-bottom: 80px;
}

@media (max-width: 1199px) {
    .container {
        max-width: none;
        padding-left: 24px;
        padding-right: 24px;
    }

    .content {
        margin-top: 32px;
        margin-bottom: 64px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .content {
        margin-top: 24px;
        margin-bottom: 48px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:hover, a:focus, a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.store__content {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1199px) {
    .store__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

input[type=checkbox] {
    position: absolute;
    left: -1000em;
}

label:has(input[type=checkbox]) {
    position: relative;
    padding-left: 25px;
}

label:has(input[type=checkbox]):before {
    content: "\f096";
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1;
    display: block;
    font-family: 'FontAwesome';
    color: var(--grey--grey60);
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 0 0;
    cursor: pointer;
}

label:has(input[type=checkbox]:checked):before {
    content: "\f046";
    color: var(--azure--azure50);
}

input[type=checkbox] + span a {
    color: var(--blue--blue20);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    text-decoration-line: underline;
}

textarea {
    -webkit-appearance: none;
    resize: none;
}

/*
 * Разная «толщина» обводки без сдвига вёрстки: border всегда 1px, доп. кольца — box-shadow
 * (тень не меняет размер бокса в потоке). По умолчанию — 1px, hover ~2px, focus ~3px.
 */
input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="image"]):not([type="range"]):not([type="file"]):not([type="color"]),
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="month"],
input[type="week"],
textarea,
select {
    border: 1px solid var(--grey--grey80);
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="image"]):not([type="range"]):not([type="file"]):not([type="color"]):hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="url"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="time"]:hover,
input[type="month"]:hover,
input[type="week"]:hover,
textarea:hover,
select:hover {
    border-color: var(--azure--azure50);
    box-shadow: 0 0 0 1px var(--azure--azure50);
}

input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="image"]):not([type="range"]):not([type="file"]):not([type="color"]):focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="time"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
textarea:focus,
select:focus {
    border-color: var(--azure--azure50);
    box-shadow: 0 0 0 1px var(--azure--azure50);
    outline: none;
}

::-webkit-input-placeholder {
    color: var(--grey--grey70);
}

.form-group.has-error input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: var(--red--red50);
    box-shadow: 0 0 0 1px var(--red--red50);
}

.has-error .help-block {
    color: var(--red--red50);
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
}