/* Красная кнопка со слайдом вверх */

    .csp-btn__outline-red a {
        box-sizing: border-box !important;
        position: relative !important;
        display: inline-block !important;
        padding: 16px !important;
        gap: 10px !important;
        border: 1px solid #E31E25 !important;
        text-decoration: none !important;
        font-family: 'Yanone Kaffeesatz' !important;
        font-style: normal !important;
        font-weight: 400 !important;
        font-size: 20px !important;
        line-height: 100% !important;
        /* letter-spacing: 0.03em; */
        color: #E31E25 !important;
        transition: all .3s ease;
        z-index: 10;
    }

    .csp-btn__outline-red a:hover {
        color: #ffffff  !important;
    }

    .csp-btn__outline-red a::after {
        box-sizing: border-box;
        position: absolute;
        content: '';
        background-color: #E31E25;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0;
        transition: all .3s ease;
        z-index: -1;
    }

    .csp-btn__outline-red a:hover::after {
        position: absolute;
        content: '';
        background-color: #E31E25;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .csp-btn__outline-red a:active::after {
        position: absolute;
        content: '';
        background-color: #B6181E;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    
    
    
    /* Черная кнопка со слайдом вверх */

     .csp-btn__outline-black a {
        box-sizing: border-box !important;
        position: relative !important;
        display: inline-block !important;
        padding: 16px !important;
        gap: 10px !important;
        border: 1px solid #302F54 !important;
        text-decoration: none !important;
        font-family: 'Yanone Kaffeesatz' !important;
        font-style: normal !important;
        font-weight: 500 !important;
        font-size: 20px !important;
        line-height: 1 !important;
        /* letter-spacing: 0.03em; */
        color: #302F54 !important;
        transition: all .3s ease;
        z-index: 10;
    }

    /* .csp-btn__outline-black a:hover {
        color: #ffffff;
    } */

    .csp-btn__outline-black a::after {
        box-sizing: border-box;
        position: absolute;
        content: '';
        background-color: #E6E6EE;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0;
        transition: all .3s ease;
        z-index: -1;
    }

    .csp-btn__outline-black a:hover::after {
        position: absolute;
        content: '';
        background-color: #E6E6EE;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .csp-btn__outline-black a:active::after {
        position: absolute;
        content: '';
        background-color: #CCCCD4;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }