﻿.store-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.store-item {
    display: flex;
    width: 50%;
    flex-direction: row;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: white;
}

    .store-item.blue {
        background-color: #f0f5fa;
    }

    .store-item .left {
        width: 500px;
        margin-left: auto;
        margin-right: 0;
        display: flex;
        flex-direction: row;
        padding-left: 15px;
        align-items: center;
    }

    .store-item .right {
        width: 500px;
        margin-right: auto;
        margin-left: 0;
        display: flex;
        flex-direction: row;
        padding-left: 15px;
        align-items: center;
    }

.store-content {
    align-content: center;
    margin-left: 16px;
}

    .store-content p {
        margin: 4px 0;
        font-size: 16px;
        line-height: 20px;
    }

    .store-content b {
        font-size: 16px;
    }

.store-item img,
.store-item .flag-empty {
    height: 90px;
    width: 150px;
}

@media only screen and (max-width: 960px) {
    .store-item {
        width: 100%;
    }

        .store-item.top {
            background-color: #f5fcff !important;
            justify-content: center;
        }

        .store-item.bottom {
            background-color: white !important;
            justify-content: center;
        }

        .store-item .left,
        .store-item .right {
            width: 400px;
            padding: 0;
            margin: 0 20px;
        }
}

@media only screen and (max-width: 440px) {
    .store-item .left,
    .store-item .right {
        flex-direction: column;
        gap: 12px;
        width: 300px;
        padding-left: 15px;
    }

    .store-content {
        margin: 0;
    }
}
