.total__summ{
    font-size: 12px;
    line-height: 14px;
    margin-top: 12px;
    text-align: center;
}

.total__summ span{
    font-weight: 600;
}

.desc-modal{
    position: fixed;
    z-index: 11111;
    top: 20%;
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid black;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
}

.main-catalog__markkdown-desc h3{
    margin-top: 0;
}

.main-catalog__markkdown-desc{
    margin-bottom: 20px;
}

.main-catalog__markkdown-desc .link{
    color: #0a7ddd;
}

.desc-modal.show{
    visibility: visible;
    opacity: 1;
}

.desc-modal .desc-modal__close{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    cursor: pointer;
}

.desc-modal .desc-modal__close svg{
    width: 100%;
    height: 100%;
}