.gifts-container {
    display: flex;
    flex-wrap: wrap;
}

.gifts-container .gift {
    margin: 4px;
    padding: 4px;
    background: #fbfbfb;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gifts-container .gift-name {
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
}

.gifts-container  .gift-price {
    font-size: 12px;
    opacity: .85;
    display: flex;
    align-items: center;
    justify-content: center;
}



.region {
    display: flex;
    align-items: center;
    margin: 2px;
}

.region a {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 1px;
    padding: 2px;
}

.region a:hover {
    background: #eee;
}

.region img {
    margin-right: 5px;
}


.gifts-container p {
    margin: 0;
}

.gifts-container .gift img {
    width: 70px;
    height: 70px;
}

.small-h1 {
    font-size: 24px;
    color: inherit;
    margin-left: 4px;
}

.region a.active-link {
    background: #d7f0ff;
}


.flex-page .right-side {
    height: auto;
    max-height: 2000px;
    overflow-y: auto;
}


@media screen and (max-width: 470px) {
    .gifts-page .right-side {
        height: 220px !important;
        overflow-y: auto;
    }

    .gifts-container .gift {
        width: calc(33.3333% - 16px);
    }
}