<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#pricing-table{
    margin: 10px auto;
    text-align: center;
    /* total computed width = 222 x 3 + 226 */
}

#pricing-table .plan, #pricing-table .wide {
    font: 12px 'Lucida Sans', 'trebuchet MS', Arial, Helvetica;
    /* text-shadow: 0 1px rgba(255,255,255,.8);  */      
    background: #fff;      
    border: 1px solid #ddd;
    color: #333;
    padding: 20px;
    width: 180px; /* plan width = 180 + 20 + 20 + 1 + 1 = 222px */      
    float: left;
    position: relative;
}

#pricing-table .wide{
    width: 400px;
}

#pricing-table #most-popular {
    z-index: 2;
    top: -13px;
    border-width: 3px;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 20px 0 10px -10px rgba(0, 0, 0, .15), -20px 0 10px -10px rgba(0, 0, 0, .15);    
}

#pricing-table .plan:nth-child(1) {
    border-radius: 5px 0 0 5px;        
}

#pricing-table .plan:nth-child(4){
    border-radius: 0 5px 5px 0;        
}

/* --------------- */   

#pricing-table h3  {
    font-size: 20px;
    font-weight: normal;
    padding: 20px;
    margin: -20px -20px 50px -20px;
    background-color: #eee;
    /*background-image: linear-gradient(#fff, #eee);*/
}


#pricing-table #most-popular h3{
    /*background-color: #ddd;
    background-image: linear-gradient(#eee, #ddd);*/
    margin-top: -30px;
    padding-top: 30px;
    border-radius: 5px 5px 0 0;         
}


#pricing-table h3.bronze  {
	background-color: rgba(201,146,105, 0.3);
	/* background-image: linear-gradient(#c99269, #fff); */
}

#pricing-table h3.silver  {
	background-color: rgba(154,151,158, 0.3);
	/* background-image: linear-gradient(#9a979e, #fff); */
}

#pricing-table h3.gold  {
	background-color: rgba(245,183,98, 0.3);
	/* background-image: linear-gradient(#f5b762, #fff); */
}

#pricing-table h3.platinum  {
	background-color: rgba(155,146,139, 0.3);
	/*background-image: linear-gradient(#9b928b, #fff); */
}

#pricing-table .plan:nth-child(1) h3 {
    border-radius: 5px 0 0 0;       
}

#pricing-table .plan:nth-child(4) h3 {
    border-radius: 0 5px 0 0;       
}   

#pricing-table h3 span {
    display: block;
    font: bold 25px/100px Georgia, Serif;
    color: #777;
    background: #fff;
    border: 5px solid #fff;
    height: 100px;
    width: 100px;
    margin: 10px auto -65px;
    border-radius: 100px;
    box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
}

/* --------------- */

#pricing-table ul {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
}

#pricing-table li {
    border-top: 1px solid #ddd;
    padding: 10px 0;
}

/* --------------- */
    
#pricing-table .signup  {
    position: relative;
    padding: 8px 20px;
    margin: 20px 0 0 0;  
    color: #fff;
    font: bold 14px Arial, Helvetica;
    /* text-transform: uppercase; */
    text-decoration: none;
    display: inline-block;       
    background-color: #72ce3f;
    background-image: linear-gradient(#333333, #333333);
    border-radius: 3px;     
    text-shadow: 0 1px 0 rgba(0,0,0,.3);        
    /* box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 2px 0 rgba(0, 0, 0, .7); */
}

#pricing-table .signup:hover {
    background-color: #62bc30;
    background-image: linear-gradient(#fff600, #fff600); 
color:#333333;
}

#pricing-table .signup:active, #pricing-table .signup:focus{
    background: #333333;       
    top: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .7) inset; 
}

/* --------------- */

.clear:before, .clear:after {
  content:"";
  display:table
}

.clear:after {
  clear:both
}

.clear {
  zoom:1
}   </pre></body></html>