.info {
    padding: 1em 0 0 0;
}

.infocontent {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 1em;
}

.infocontent div{
    padding: 1em;
    width: 40%;
    height: 125px;
    border: dashed 2px red;
}

.infocontent h1{
    padding: 0;
    margin: 0;
}


.itemSection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1em;

}

.itemSection .item {
   
    position: relative;
    width: 200px;
    min-height: 250px;
    height: auto;
    border: solid 1px black;
    border-radius: 3px;
    margin-bottom: 3em;
}

.prices {
    padding: 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    text-align: center;
    padding-bottom: 1em;
}

.subDesc {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.subDesc div{
    display: inline-block;
    width: 45%;
    text-align: center;
}
.prices div {
    display: inline-block;
}

.pricesSub div {
    width: 45%;
}
.prices .pricesSub {
    padding: 0.1em;
}

.titlebar {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    line-height: 40px;
    padding: 0 0 0 1em;
    font-size: 21pt;
    font-weight: 900;
    height: 40px;
    min-width: 400px;
    max-width: 500px;
    text-shadow: 1px 1px 2px white;
    background: linear-gradient(0deg, rgba(229,107,6,1) 0%, rgba(255,165,0,1) 50%, rgba(255,233,29,1) 100%);
    pointer-events: none;
}

.itemSection .item .title {
    padding: 0.2em;
    font-weight: bold;
    background: linear-gradient(0deg, rgba(229,107,6,1) 0%, rgba(255,165,0,1) 50%, rgba(255,233,29,1) 100%);
    border-bottom: solid 1px black;
}

.itemSection .item .itemDesc {
    background-color: gainsboro;
    font-style: italic;
    font-size: 10pt;
    padding: 0.2em;
    border-bottom: solid 1px black;
}

.item .bottomItem {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

.bottomItem input[type="text"] {
    width: 100%;
    height: 40px;
    border: solid 1px gray;
    font-size: 16pt;
    text-align: center;
}
.addToCart {
    width: 100%;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    border-top: solid 1px black;
    background: linear-gradient(0deg, rgba(229,107,6,1) 0%, rgba(255,165,0,1) 50%, rgba(255,233,29,1) 100%);
}
.addToCart:hover {
    background: linear-gradient(0deg, rgba(255,233,29,1) 0%, rgba(255,165,0,1) 50%, rgba(229,107,6,1) 100%);
}

.odd {
    background-color: lightgray;
}

.itemSection .kits {
   
    position: relative;
    width: 200px;
    min-height: 300px;
    height: auto;
    border: solid 1px black;
    border-radius: 3px;
    margin-bottom: 3em;
}

.kits .bottomItem {
display: block;
    width: 100%;
min-height: 70px;
}

.itemSection .kits .title {
    padding: 0.2em;
    font-weight: bold;
    background: linear-gradient(0deg, rgba(229,107,6,1) 0%, rgba(255,165,0,1) 50%, rgba(255,233,29,1) 100%);
    border-bottom: solid 1px black;
}

.kits .itemList {
	display: block;	
	width: 100%;
	height: auto;
}

.kits .kitPrice
{
    font-size: 18pt;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5px;
    width: 100%;
}

.sub .desc {
    font-size: 10pt;
}

.packageSection {
    padding: 10px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.packageSection div {
    box-sizing: border-box;
}
.packageSection .kits {
    width: 100%;
    overflow: hidden;
}

.kits {
    margin-bottom: 10px;
    border: solid 1px black;
}


.kits .title {
    font-size: 16pt;
    background: linear-gradient(0deg, rgba(229,107,6,1) 0%, rgba(255,165,0,1) 50%, rgba(255,233,29,1) 100%);
    border-bottom: solid 1px black;
    padding: 5px;
    font-weight: bold;
}

.kits .itemSub {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.kits .itemSub .sub {
    padding: 10px 10px;
    min-width: 100px;
    width: 90px;
    border-bottom: none;
    margin: 5px 10px;
}

.kits .name {
    font-weight: bold;
}
