*, *:before, *:after {
  box-sizing: border-box;
} 
	font: 14px 'Bebas Neue';
}
{
  margin-top: 100px;
}

.container {
  width: responsive;
	margin: 0 auto;
}

 .card {
    padding: 20px 20px 12px 0px;
    background-color: transparent;
    border-bottom: none !important;
    
}

  
   li.title {
    padding-top: 10px !important;    
} 
  
  
.ge-accordion .card-header {
    padding: 0;
 		background-color: transparent;     
    border-style: none;
}  

.ge-accordion .card-body {
    background-color: transparent;
		padding: .5rem;    
}  
  

ul.tabs {
  margin: 0px;
  padding: 0px;
	list-style: none;
}

ul.tabs li {
	color: #98989A;
  opacity: 0.7;
  font: 1rem 'Bebas Neue';
  letter-spacing: 1px;
	display: inline-block;
	padding: 4px 4px;
  margin: 3px 0px 0px 0px;
	cursor: pointer;  
}

ul.tabs li.current{
  opacity: 1;
  border-bottom: 3px solid #00aeef;
  font: 1.3rem 'Bebas Neue';
  letter-spacing: 1px;
  color: #555555;
}

.tab-content{
  display: none;
  background: #ffffff;
  padding: 5px;  
}

.tab-content.current{
  display: inherit;
   }

  
  .pricingdiv{
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: center;
}

.pricingdiv ul.theplan{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: 555555;
  width: 300px; /* width of each table */
  margin-right: 20px; /* spacing between tables */
  margin-bottom: 2em;
  border: 1px; 
  border-style: solid;
  border-color: #d0d0d3;
  transition: all .5s;
}


.pricingdiv ul.theplan .center{
  margin: 0 auto;
  text-align: center;
}

.pricingdiv ul.theplan img{
  max-width: 100%;
  height: auto;
}

.pricingdiv ul.theplan li{
  padding: 5px 10px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.pricingdiv ul.theplan li.title{
  font-weight: bold;
  text-align: center;
  
  background: #ffffff;
  color: white;
  box-shadow: 0 -1px 0px rgba(0,0,0,.1) inset;
  text-transform: uppercase;
}


.pricingdiv ul.theplan li b{
  text-transform: uppercase;
}
.pricingdiv ul.theplan li.title b{
  font-size: 250%;
}



.pricingdiv ul.theplan:last-of-type{ /* remove right margin in very last table */
  margin-right: 0;
}


/*very last LI within each pricing UL */
.pricingdiv ul.theplan li:last-of-type{
  text-align: center;
  margin-top: auto; /*align last LI (price botton li) to the very bottom of UL */
}  

.pricingdiv a.pricebutton{
  background: red;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  margin: 10px auto;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
}

  .pricingdiv ul.theplan:hover{ /* when mouse hover over pricing table */
  box-shadow: 0 0 10px gray;
}

@media only screen and (max-width: 600px) {
  .pricingdiv ul.theplan{
    border-radius: 0;
    width: 100%;
    margin-right: 0;
  }
  
  .pricingdiv ul.theplan:hover{
    transform: none;
    box-shadow: none;
  }
  
  .pricingdiv a.pricebutton{
    display: block;
  }
}