html{
    scroll-behavior: smooth;
}
html, body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%}
body {
    min-width: 240px;
    font-size: 100%;
    line-height: 1.4;
    font-size: 16px;
    font-family: 'Lato',  sans-serif;
    font-weight: 400;
    color: #323040;
}
* {
    margin: 0;
    padding: 0;
    border: 0;
}
*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    outline: none;
}
nav, footer, header, aside {
    display: block;
}
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a:focus, a:active {
    outline: none;
}
a:visited, a:hover {
    text-decoration: none;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    -o-object-fit: cover;
    object-fit: cover;
}
input, button, textarea {
    font-family: inherit;
}
input::-ms-clear {
    display: none;
}
button {
    cursor: pointer;
    text-align: center;
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
textarea {
    resize: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 10px;
}
.content-info__table {
    margin: 5px 0;
    /* border: 2px solid #ee575e; */
    border-radius: 5px;
    background-color: #fff;
}
.content-info__table th, .content-info__table tr, .content-info__table td {
    border: 1px solid #58566f;
    padding: 6px;
}

.content-info__table.custom-table tr:nth-child(even){
    background-color: #58566f1d;
}

.content-info__table img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
a.active{
    text-decoration: underline;
}
.sidebar-item__subtitle.active {
    background-color: #fff;
    color: #fe565d;
}
.breadcrumbs__items {
    padding-bottom: 20px;
    max-width: 700px;
    width: 95%;
    color: #6e6c83;
    font-weight: 600;
    overflow-x: hidden;
}
.breadcrumbs__items li {
    display: inline-block;
}
.breadcrumbs__items li:first-child {
    text-transform: uppercase;
}
.breadcrumbs__items li a {
    text-decoration: underline;
}
.breadcrumbs__items li+li {
    padding-left: 20px;
    position: relative;
}
.breadcrumbs__items li+li::before {
    position: absolute;
    content: '';
    left: 4px;
    top: 7px;
    width: 5px;
    height: 9px;
    background-image: url(../images/arrow-right_bread.svg);
}