@charset "utf-8";

.packageContainer {
	width: 90%;
	margin: 25px auto 0px auto;
}

.packageContainer a {
	color: black;
	text-decoration: none;
}

.packageHeadingContainer {
	display: flex;
	flex-flow: row wrap; 
	background-color: rgb(215,215,215);
	border-radius: 25px 25px 0px 0px;
}

.packageTitle{
	padding: 5px 15px;
	background-image: linear-gradient(rgb(214,69,4), rgb(128,35,2));
	border: 5px solid rgb(214,69,4);
	border-radius: 25px 0px 25px 0px;
	font-size: 32px;
	line-height: 1em;
	color: white;
}

.packageCaption{
	width: 60%;
	padding: 8px 10px;
	border-left: 5px solid rgb(214,69,4);
	font-size: 24px;
	line-height: 1em;
}

.fullPrice{
	position: relative;
	flex: 1 1 auto;
	padding: 5px 10px;
	background-image: none;
	border-top: 5px solid rgb(214,69,4);
	border-right: 5px solid rgb(214,69,4);
	border-radius: 0px 25px 0px 0px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1em;
	text-align: right;
	color: rgb(240,0,0);
}

.fullPrice span {
	position: absolute;
	right: 90px;
	bottom: 5px;
	font-size: 24px;
	color: black;
}

.monthlyPrice{
	width: 40%;
	padding: 4px 10px;
	border-right: 5px solid rgb(214,69,4);
	font-size: 24px;
	line-height: 1em;
	text-align: right;
	color: rgb(240,0,0);
}

.additionalPrice {
	width: 100%;
	padding: 0px 10px 4px 10px;
	border-left: 5px solid rgb(214,69,4);
	border-right: 5px solid rgb(214,69,4);
	font-size: 20px;
	line-height: 1em;
	text-align: right;
}

.packageBodyContainer {
	position: relative;
	padding: 20px 10px 0px 10px;
	border-bottom: 5px solid rgb(214,69,4);
	border-right: 5px solid rgb(214,69,4);
	border-left: 5px solid rgb(214,69,4);
	border-radius: 0px 0px 25px 25px;
}

.packageBodyContainer::after {
  content: "";
  clear: both;
  display: table;
}

.packageBodyContainer img {
	display: block;
	float: right;
	width: 600px;
	margin: 0px 10px 15px 0px;
	box-shadow: 0px 0px 15px 5px rgb(165,165,165);
}

.packageBodyContainer dl {
	padding: 0px 0px 15px 0px;
}

.packageBodyContainer dt {
	padding: 5px 0px;
	font-size: 28px;
	line-height: 1em;
}

.packageBodyContainer dd {
    display: list-item;
    margin-left : 1em;
	padding: 6px 0px;
	font-size: 18px;
	line-height: 1.2em;
}

.packageContact {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0px 15px 15px 0px;
	font-size: 28px;
	line-height: 1em;
}

@media only screen and (max-width: 1085px) {
	.packageTitle{
		width: 100%;
		border-radius: 25px 25px 0px 0px;
	}
	
	.packageCaption{
		order: 2;
		width: auto;
	}

	.fullPrice{
		order: 3;
		flex: 1 1 auto;
		padding: 5px 10px;
		background-image: none;
		border-top: none;
		border-right: none;
		border-radius: 0px;
		text-align: right;
	}

	.fullPrice span {
		display: none;
	}

	.monthlyPrice{
		order: 4;
		width: 200px;
		padding: 11px 10px 11px 0px;
	}
	
	.additionalPrice {
		order: 5;
	}
}

@media only screen and (max-width: 900px) {
	
	.packageCaption{
		width: 100%;
		border-right: 5px solid rgb(214,69,4);
	}

	.fullPrice{
		border-left: 5px solid rgb(214,69,4);
	}
	
	.packageBodyContainer img {
		float: none;
		width: 90%;
		margin: 0px auto 10px auto;
	}
	
}

@media only screen and (max-width: 580px) {
	
	.packageTitle{
		font-size: 28px;
	}
	
	.packageCaption{
		font-size: 22px;
	}
	
}

@media only screen and (max-width: 330px) {
	
	.fullPrice{
		font-size: 31px;
	}
	
}