/* CSS kod pishite v etom faile, chotobi pri ustanovke obnovlenii ne bilo problem  */
/* --------------------------------------- */
/* Here you can put custom css rules for your site */

.p-0 {padding: 0 0;}
.p-1 {padding: 5px 5px;}
.px-1 {padding: 0 5px;}

.seo-pages .items {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 395px) {
    .banners-big.front.hidden_narrow {
        display: block !important;
    }

    .item-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(20%, 2fr));
        gap: 1rem;
    }

    .item-block {
        /*max-width: 50rem;*/
        max-height: 40rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }

    .item-block:hover {
        box-shadow: 0px 6px 41px -8px #333;
    }

    .item-img-block {
        max-width: 36rem;
        max-width: 36rem;
        max-height: 30rem;
    }

    .item-img-block img {
        width: 100%;
        height: 80%;
        object-fit: cover;
    }
}

@media (max-width: 860px) {
    .item-wrap {
        grid-template-columns: repeat(auto-fill, minmax(40%, 2fr));
    }
}

@media (max-width: 560px) {
  .item-wrap {
    grid-template-columns: repeat(auto-fill, minmax(100%, 2fr));
    gap: 2rem 0;
  }
}

#cookie_note{
    z-index: 1000;
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    text-align: right;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
    margin: 0;
    font-size: 1rem;
    text-align: left;
    color: black;
}



.cookie_accept{
    width:20%;
}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}