.grid{
	display: grid;
}

.grid-cols-2{
	grid-template-columns: repeat(2, minmax(0,1fr));
}

.flex{
	display: flex;
}

.flex-wrap{
	flex-wrap: wrap;
}

.inline-block{
	display: inline-block;
}

.justify-center{
	justify-content: center;
}

.justify-between{
	justify-content: space-between;
}

.items-center{
	align-items: center;
}

#plans_mobile div{
	width: 50%;
}

#plans_mobile div.w-full{
	width: 100%;
}

.col-span-full{
	grid-column-end: -1;
	grid-column-start: 1;
}

.w-full{
	width: 100%;
}

.p-4{
	padding: 16px;
}

.p-2{
	padding: 8px;
}

.py-1{
	padding-top: 4px;
	padding-bottom: 4px;
}

.pt-3{
	padding-top: 12px;
}

.py-3{
	padding-top: 12px;
	padding-bottom: 12px;
}

.px-4{
	padding-left: 16px;
	padding-right: 16px;	
}

.px-2{
	padding-left: 8px;
	padding-right: 8px;		
}

.mt-4{
	margin-top: 16px;
}


.font-light{
	font-weight: 300;
}

.font-normal{
	font-weight: normal;
}

.font-semibold{
	font-weight: 600;
}

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

.text-xs{
	font-size: 12px;
}

.text-lg{
	font-size: 18px;
}

.text-xl{
	font-size: 20px;
}

.text-2xl{
	font-size: 24px;
}

.text-3xl{
	font-size: 30px;
}

.text-center{
	text-align: center;
}

.uppercase{
	text-transform: uppercase;
}

.text-white{
	color: white;
}

.bg-white{
	background-color: white;
}

.bg-blue-900{
	background-color: #051937;
}

.rounded-md{
	border-radius: 6px;
}

.border-t-2{
	border-top-width: 2px;
	border-top-style: solid;
}

.border-blue-200{
	border-color: #e7efff;
}

.btn-select-offer{
	background: white;
	border: 2px solid rgb(212, 164, 24);
	border-radius: 6px;
	color: rgb(212, 164, 24);
	cursor: pointer;
	display: block;
	font: 300 16px / 24px Avenir;
	height: 36px;
	margin: 0px;
	padding: 4px 16px;
	padding-block: 4px;
	padding-inline: 16px;
	text-align: center;
	text-decoration: none;
	transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	width: 192px;
}

.btn-select-offer:hover{
	background: rgb(212, 164, 24);	
	color: white;
}

.hidden{
	display: none;
}

@media (width >= 48rem) {

	.md\:grid {
		display:grid
	}
	
	.md\:hidden {
		display:none;
	}
}
