.cookie_block{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #F2F2F2;
    box-shadow: 0 0 27px rgba(0, 0, 0, 0.3);
    padding: 30px 0;
}
.cookie_block.show{
    display: block;
}
.cookie_block .cookie_container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie_block p{
    margin: 0 15px 0 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #131313;
}
.cookie_block .buttons{
    display: flex;
    align-items: center;
}
.cookie_block .buttons .button{
    cursor: pointer;
    padding: 10px 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #131313;
    border-radius: 25px;
    background: #E4E4E4;
    border: unset;
    transition: .1s;
}
.cookie_block .buttons .button:hover{
    box-shadow: 0 2px 0 0 rgba(34, 60, 80, 0.2);
}
.cookie_block .buttons .button.cookie_accept{
    margin-right: 10px;
    background: linear-gradient(180deg, #F8D69A 0%, #D2A959 100%);
}
.cookie_block .buttons a{
    margin-left: 65px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #9D9D9D;
    transition: .1s;
}
.cookie_block .buttons a:hover{
    color: #131313;
}
.cookie_form__wrapper .radio_group{
    margin: 10px 0;
    display: flex;
}
.cookie_form__wrapper .radio_group label{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.cookie_form__wrapper .radio_group label span{
    margin: 0 0 0 5px;
}
.cookie_form__wrapper button{
    margin-top: 5px;
    font-size: 16px;
    cursor: pointer;
    border: unset;
    outline: unset;
    color: #FFFFFF;
    background: #107138;
    padding: 5px 15px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.responsive-table th,
.responsive-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.responsive-table th {
    background-color: #f2f2f2;
    text-align: center;
}

.cnt th {
    border: 1px solid #1C1C1C !important;
}
.cnt td {
    border: 1px solid #1C1C1C !important;
}
@media all and (max-width: 767px){
    .cookie_block .cookie_container{
        flex-direction: column;
    }
    .cookie_block p{
        margin: 0 0 10px 0;
        font-size: 16px;
        line-height: 20px;
    }
    .cookie_block .buttons{
        flex-wrap: wrap;
    }
    .cookie_block .buttons a{
        margin-left: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 600px) {
    .responsive-table thead {
        display: none;
    }

    .responsive-table, 
    .responsive-table tbody, 
    .responsive-table tr, 
    .responsive-table td {
        display: block;
        width: 100%;
    }

    .responsive-table tr {
        margin-bottom: 15px;
    }

    .responsive-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .responsive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}