.page-container {
    display: flex;
    flex-direction: column;

    .collection-links-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 12px;

        .section-price-list-container {
            display: flex;
            box-sizing: border-box;
            padding: 12px;
            flex-direction: row;
            flex-wrap: nowrap;
            min-width: 330px;
            width: 45%;
            height: 100px;
            border-radius: 15px;
            border: #e5e5e5 solid 1px;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 0 10px -5px black;

            img.section-image {
                width: 80px;
                border-radius: 15px;
                box-shadow: 0 0 10px -6px black;
            }

            .section-name {
                font-weight: bold;
                text-align: center;
                font-size: 22px;
            }

        }
    }

}


.simple-btn {
    display: flex;
    min-width: 100px;
    height: 40px;
    padding: 12px 8px;
    background-color: #0061b2;
    border-radius: 15px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: white;
    box-sizing: border-box;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    &.wait {
        pointer-events: none;
        cursor: wait;
        content: url('./images/loader-38px.svg');
    }
}