.btn-strt.no_soglas input{
    background: #c5c9cd;
}

/* cookie */

#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    gap: 20px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 123456789 !important;
}

#cookie_note p{
    width: auto !important;
    margin: 0;
    text-align: left;
    color: black;
}
  
.cookie_accept{
    white-space: nowrap;
    height: min-content;
    width: auto;
    background-color: #7f7f7f;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#cookie_accept:hover {
    background-color: #45a049;
}
  
#cookie_accept:active {
    background-color: #3e8e41;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transform: translateY(1px);
}

@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}

@media(max-width: 780px){
    #cookie_note{
        flex-direction: column;
    }
}