.b-disk-thank-link{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 38px auto;
    align-items: center;
    grid-gap: 0;
    padding: 6px 10px;
    border: rgba(0, 0, 0, .08) solid 1px;
    font-weight: 900;
    border-radius: var(--global-btn-size-base-border-radius);
    color: #000;
    transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
}

.b-disk-thank-remove.b-disk-thank-link{
    cursor: default;
    font-weight: normal;
    border: 0;
    padding: 0;
    grid-template-columns: 24px auto;
    color: #000 !important;
}

.b-disk-thank-remove.b-disk-thank-link:hover{
    color: #000;
}

.b-disk-thank-add.b-disk-thank-link:hover{
    color: #000;
    -webkit-box-shadow: 0 1px 3px 0 rgb(0 0 0 / 8%);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 8%);
}

.b-disk-thank-link:before{
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    background: url(images/ico-add.svg) center no-repeat;
    background-size: contain;
}

.b-disk-thank-remove.b-disk-thank-link:before{
    background-image: url(images/ico-remove.svg);
    background-size: 27px;
}

.b-disk-thank-link__inner{
    min-width: 0;
    padding-left: 10px;
}

.b-disk-thank-desc{
    font-size: 11px;
    line-height: 14px;
    color: #818a9e;
    text-align: center;
    margin-top: 15px;
}

.b-disk-thank-desc._hide{
    display: none !important;
}