.comparison th:first-child {
    border-radius: 10px 0 0 0px;
}
.comparison th:last-child {
    border-radius: 0px 10px 0 0;
}

/* 
Generic Styling, for Desktops/Laptops 
*/
table { 
  width: 100%; 
  border-collapse: separate; 
}
th { 
    background: #202040;
    color: #fff;
    padding: 15px;
   font-weight: 700;
    border-width: 0 1px 1px 0;
	text-align:center;
}
/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #f2f2f2; 
}

td, th { 
  padding: 6px; 
  border: none;
	text-align:center;

}
/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: none;		}
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 

	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
td:before { content: attr(data-label); }
		
}


.btn {
    font-size: 18px !important;
    max-width: 410px !important;
    border-radius: 5px !important;
    background-color: #f7941d !important;
    webkit-box-shadow: 0 0 17px 3px rgba(184,184,184,.5);
    -moz-box-shadow: 0 0 17px 3px rgba(184,184,184,.5);
    box-shadow: 0 0 17px 3px rgba(184,184,184,.5);
    color: #fff !important;
    text-align: center;
    padding: 7px 5px;
    width: 75%;
    display: block;
    margin: auto;
}





.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    border-radius: .25rem;
}
*, ::after, ::before {
    box-sizing: border-box;