#content p, #content ul{
    font-weight: 300;
}


.tooltip-template { display: none; }
.tooltip-content{
    padding: 5px 15px;
    color: #666666;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}
.tooltip-text{

}
.tooltip-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(/images/close.svg) no-repeat center center/10px;
    cursor: pointer;
}


.token{
    position: relative;
    right: 20px;
    top: 40px;
    float: right;
    background: #fff;
    opacity: 0.9;
    border-radius: 3px;
    font-size: 13px;
    padding: 6px;
    line-height: 15px;
    color:#000;
}
.token i{
    border-radius: 50%;
    width: 16px;
    height: 16px;
    padding: 2px;
    color: #fff;
    text-align: center;
    font: 13px Arial, sans-serif;
    display: inline-block;
    background: #000;
}

.token i:after{
    content:'i'
}
@media(max-width: 768px){
    .token{
        right: 5px;
        top:30px;
    }
}

#breadcrumbs .last-link:after {
    content: unset;
}

.sitemap__content {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 300px);
    justify-content: center;
    gap: 20px;
}
.sitemap__block {
    text-align: center;
}
.sitemap__content p {
    line-height: 1.5;
    margin-bottom: 5px;
}
.sitemap__content strong {
    font-weight: bold;
}
@media (max-width: 596px) {
    .sitemap__content {
        grid-template-columns: repeat(1, 300px);
    }
}