#rec271610444 {
    display: none !important;
}
 
/* text selection */
::selection {
    background: #e42e3a;
}
/* /text selection */

/* scrollbar */
::-webkit-scrollbar {
    background: #000;
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-thumb {
    border-radius: 9in;
    background: #e42e3a;
}   
/* /scrollbar */

/* copy code button */
    pre {
        position: relative;
    }
    .copy {
        cursor: pointer; 
    }
    .copy {
        text-align: center;
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        display: inline-block;
        vertical-align: top;
        padding: 8px 16px;
        text-transform: uppercase;
        border-radius: 3px;
        background: linear-gradient(to right, #c01d31, #e42e3a);
        font-family: 'FuturaPT',Arial,sans-serif;
    }
    .copy:hover {
        background: linear-gradient(to right, #c01d31, #c01d31);
    }
    .copy:before {
        content: 'скопировать';
    }
    .copyed {
        pointer-events: none;
    }
    .copyed,
    .copyed:hover{
        background: linear-gradient(to right, #169216, #1ac722);
    }
    .copyed:before {
        content: 'скопировано';
    }
/* /copy code button */