.prices-boxes {
  display: flex;
  align-items:center;
  flex-direction: column;
  width: 100%;
}

.price-box {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
  margin-bottom: 40px;
  width: 95%;
}

.price-corner-icon {
	position: absolute;
	left: -20px;
	top: -20px;
	width: 64px;
	height: 64px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--green);
	fill: var(--white);
	border-radius: 50%;
	box-shadow: 0 0 0 6px var(--white);
	pointer-events: none;
	color: white;
	font-weight: 700;
	transition: all 0.4s;
	z-index: 0;
}

.price-box:hover .price-corner-icon {
	box-shadow: 0 0 0 6px var(--green);
	background: var(--white);
	fill: var(--green);
}

.corner-icon {
	width:32px;
	height:32px;
}

.price-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.price-category,
.price-price {
	border-style: solid;
	border-width: 5px;
	border-color: var(--white);
}

.price-category,
.price-price,
.price-price-no-border {
	background: var(--white);
	border-radius: var(--border-radius);
  font-size: 1.2rem;
	width: 100%;
}

.price-category,
.price-category-empty,
.price-category-empty-notice {
	min-width: 50%;
	max-width: 50%;
  overflow: visible;
  padding: 15px 20px 15px 80px;
}

.price-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.price-price,
.price-price-no-border {
	font-weight: bold;
	text-align: center;
	padding: 15px 20px 15px 20px;
}

.price-price {
	cursor: pointer;
}

.price-price:hover,
.price-price:focus {
	border-color: var(--accent);
}

.price-price-info {
	font-size: 0.8rem;
	text-align: justify;
	padding: 0px 10px;
}

/* Media */

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
	.price-corner-icon {
		left: -15px;
		top: -15px;
		width: 42px;
		height: 42px;
		padding: 6px;
		box-shadow: 0 0 0 4px var(--white);
	}
	
	.price-box:hover .price-corner-icon {
		box-shadow: 0 0 0 4px var(--green);
	}
	
	.price-content {
		gap: 10px;
	}
	
	.price-list {
		gap: 10px;
	}
	
	.price-box {
		margin-bottom: 30px;
	}
	
	.price-category,
	.price-category-empty {
		min-width: 50%;
		max-width: 50%;
		overflow: visible;
		padding: 10px 10px 10px 30px;
	}
	
	.price-price,
	.price-price-no-border {
		font-weight: bold;
		text-align: center;
		padding: 10px 10px 10px 10px;
	}
	
	.price-category-empty-notice {
		width: 0px;
		min-width: 0px;
		max-width: 0px;
		padding: 0px;
	}
}

@media (max-width: 480px) {
	.price-corner-icon {
		left: -10px;
		top: -10px;
		width: 32px;
		height: 32px;
		padding: 3px;
		box-shadow: 0 0 0 3px var(--white);
	}
	
	.price-box:hover .price-corner-icon {
		box-shadow: 0 0 0 3px var(--green);
	}
	
	.price-content {
		gap: 5px;
	}
	
	.price-list {
		gap: 5px;
	}
	
	.price-box {
		margin-bottom: 20px;
	}
	
	.price-category,
	.price-category-empty {
		min-width: 45%;
		max-width: 45%;
		overflow: visible;
		padding: 15px 5px 5px 5px;
	}
	
	.price-price,
	.price-price-no-border {
		font-weight: bold;
		text-align: center;
		padding: 15px 5px 5px 5px;
	}
	
	.price-category-empty-notice {
		width: 0px;
		min-width: 0px;
		max-width: 0px;
		padding: 0px;
	}

}
