/* Кнопка «Ссылка на реестр» (ФГИС) в карточке товара — IntelsibRegistryLinks */
.registry_link_block {
    clear: both;
    padding-top: 16px;
}
.item_card__registry {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 25px;
    background: #6d000b;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.item_card__registry:hover,
.item_card__registry:focus {
    background: #b6000d;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .item_card__registry {
        font-size: 16px;
        line-height: 24px;
    }
}
