#hastone_choose_shop_block{
    background-image: url('../img/map-europe.svg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    background-position: center;
    padding:1rem;
}

.countries-grid {
    column-count: 3;
    column-gap: 40px;
    column-width: 200px;
    column-fill: balance;
    column-rule: 1px solid lightgrey;
}

h1 {
    margin-top: 20px;
    color: #333;
}

.country {
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(100% - 20px);
    margin-bottom: 20px;
}

.country img {
    max-width: 20px;
    height: auto;
    margin-right: 10px;
}

.country span {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

