.card-price {
	display: block;
  
  width: auto;
	height: 38px;
	
	background-color: #ffffff;
	-webkit-border-radius: 3px 4px 4px 3px;
	-moz-border-radius: 3px 4px 4px 3px;
	border-radius: 3px 4px 4px 3px;
	
	border-left: 1px solid #000000;

	/* This makes room for the triangle */
	margin-left: 19px;
    margin-right: 19px;
	
	position: relative;
	
	color: black;
	font-weight: 300;
	font-size: 22px;
	line-height: 38px;

	padding: 0 10px 0 10px;

    text-align: right;
    float: right;
	box-shadow: 0 12px 16px 0 rgba(255, 255, 255, 0.116), 0 17px 50px 0 rgba(255, 255, 255, 0.05)
}

/* Makes the triangle */
.card-price:before {
	content: "";
	position: absolute;
	display: block;
	left: -19px;
	width: 0;
	height: 0;
	border-top: 19px solid transparent;
	border-bottom: 19px solid transparent;
	border-right: 20px solid #ffffff;
}

/* Makes the circle */
.card-price:after {
	content: "";
	background-color: white;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	display: block;
	position: absolute;
	left: -9px;
	top: 17px;
}

.alo {
	margin-bottom: 2em;
}

@media only screen and (max-width: 1500px) {
    .card-price {
      height: 0px;
	  width: 0px;
	  visibility: hidden;
    }
  }

