/* test page styling */




/* test items */

.items-container,
.data-api-items,
.target-items,
.property-items {
    overflow: hidden;
    margin: 2 -1%;
}

.item {
    display: block;
    float: left;
    width: 48%;
}

.item img {
    display: block;
    max-width: 100%;
}

.item p:last-child {
    margin-bottom: 0;
}

.items-container.nested-items-parent .item {
    width: 48%;
}

/* test margins */

.test-margin .item {
    margin: 0.5%;
}

/* test a mix of padding amounts */

.test-padding .item {
    padding: 10px;
	
}


/* test a mix of border widths */

.test-border .item {
    border: 1px solid #000;
}


/* test border-box */

.test-border-box .item {
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
}



/* test target */

.target-items .item {
    overflow-y: auto;
}

/* test responsive */

@media only screen and (max-width: 1024px) {
    .item,
    .items-container.nested-items-parent .item {
        width: 48%;
    }
}

@media only screen and (max-width: 640px) {
    .test-margin .item,
    .test-margin .items-container.nested-items-parent .item {
        width: 99%;
        margin-left: 0;
        margin-right: 0;
    }
}



