/* Общие стили */
#wp-admin-bar-comments > a {
	display: none!important;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: Tahoma, sans-serif;
    overflow-x: hidden;
    width: calc(100vw - var(--scrollbar-width));
    font-size: 18px;
}

/* Стили для скроллбара */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 0 !important;
    --wp-admin--admin-bar--height: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

p {
    margin-block-start: 8px!important;
    margin-block-end: 8px!important;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    table-layout: fixed;
    width: 100%;
}

table, th, td {
    border: 1px solid #eaeaea;
    border: 1px solid rgba(51, 51, 51, 0.1);
    text-align: center;
}

table {
    background-color: transparent;
}

/* Стили контейнеров */
.container {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Стили сайта */
/* Шапка сайта */
html {
    margin-top: 0 !important;
}

body.admin-bar {
    margin-top: 0 !important;
}