/* test page styling */
body {
  background: #ffffff;
}
.maincontainer {
    width: 100%;
    margin: 0px 0px 0px 15px;
    padding: 10px 0px;
}

.nav-sep {
    padding: 0 5px;
}

a.test-summary {
    color: #EDC951;
}

a.test-summary.has-passed {
    color: #33CC61;
}

a.test-summary.has-failed {
    color: #CC333F;
}

.controls {
    overflow: hidden;
    margin: 40px 0 30px 0;
}

.controls .checkbox {
    float: left;
    font-size: 13px;
    color: #ddd;
    margin: 5px 20px 5px 0;
}

.btn-remove,
.btn-hidden {
    margin: 0 15px 11px 0px;
    line-height: 1;
    border: 1;
    background: #ddd;
    color: #555;
    padding: 7px 10px;
}

/* test items */

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

.item {
    display: block;
    float: left;
    width: 23%;
    background: #00A0B0;
}

.item p {
	color: #2f3133;    
	line-height: 1.3;
  	font-family: 'museo-sans', sans-serif;
}

.item h2,
.item h3,
.item h4 {
    color: #2f3133;
    margin: 0 0 1em 0;
    font-weight: normal;
}

.item h2 {
    font-family: 'museo-sans', sans-serif;
    font-size: 20px;
}

.item h3 {
    font-size: 20px;
}

.item h4 {
    font-size: 16px;
}

.item-0 { background: #f6f6f6; border-color: #50b0d8 !important; }
.item-1 { background: #50b0d8; border-color: #52392e !important; }
.item-2 { background: #CC333F; border-color: #ad2b35 !important; }
.item-3 { background: #EB6841; border-color: #ca5938 !important; }
.item-4 { background: #EDC951; border-color: #d8b74a !important; }
.item-5 { background: #00A0B0; border-color: #008795 !important; }
.item-6 { background: #6A4A3C; border-color: #52392e !important; }
.item-7 { background: #CC333F; border-color: #ad2b35 !important; }
.item-8 { background: #EB6841; border-color: #ca5938 !important; }
.item-9 { background: #EDC951; border-color: #d8b74a !important; }
.item-10 { background: #00A0B0; border-color: #008795 !important; }
.item-11 { background: #6A4A3C; border-color: #52392e !important; }

.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: 1%;
}
.price {
	float: left;
	padding-right: 10px;
	padding-bottom: 15px;
}
.pricecopy{
	float: inherit;
	padding-bottom: 10px;
}

/* test a mix of padding amounts */

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

.test-padding .item-5 {
    padding: 30px;
}

.test-padding .item-6 {
    padding: 40px;
}

.test-padding .item-7 {
    padding: 50px;
}

/* test a mix of border widths */

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

.test-border .item-2 {
    border: 3px solid #eee;
}

.test-border .item-3 {
    border: 6px solid #eee;
}

.test-border .item-5 {
    border: 8px solid #eee;
}

.test-border .item-8 {
    border: 10px solid #eee;
}

/* test border-box */

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

/* test fixed height items */

.items-container.fixed-items .item-0 {
    height: 150px;
}

.items-container.fixed-items .item-1 {
    height: 190px;
}

.items-container.fixed-items .item-2 {
    height: 230px;
}

.items-container.fixed-items .item-3 {
    height: 250px;
}

/* 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;
    }
}

/* test hidden */

.test-hidden .hidden-items > .item-0,
.test-hidden .hidden-items > .item-2 {
    display: none;
}

.test-hidden .hidden-items > .item-1,
.test-hidden .hidden-items > .item-3 {
    visibility: hidden;
}

.test-hidden .hidden-items .items-container {
    display: none;
}

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

/* test inline-block */

.inline-block-items {
    text-align: center;
}

.inline-block-items .item {
    display: inline-block;
    vertical-align: top;
    /*width: 20%;*/
    float: none;
}

/* test inline-flex */

.inline-flex-items {
    text-align: center;
}

.inline-flex-items .item {
    display: inline-flex;
    vertical-align: top;
    float: none;
}

/* test items-with-float */

.items-with-float .item-0 {
    float: none;
    width: auto;
}

.items-with-float .item-0 .float-element {
    display: inline-block;
    float: left;
    width: 150px;
    height: 150px;
    margin: 0 0 10px 0;
    background: #EB6841;
}