.cookies-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    color: #161921;
    padding-top: 20px;
    position: fixed;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #eb3300;
}

.cookies-text small{
    padding-right: 20px;
    font-size: 13px;
}

.cookie-accept {
    padding-right: 45px;
    text-align: center;
    flex: 0 0 32px;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    border: 0;
    color: #eb3300;
 
}


@media (max-width: 1100px) {
    .cookies-text {
        width: 100%;
        max-width: calc(100% - 60px);
        margin: 0 auto;
        padding: 10px 50px 10px 5px;
    }
    .cookie-accept {
       order: -1;
        padding: 0;
        
    }
    
}