/* Adds a border radius to images on the left-bottom corner */

.left-border img {
	border-radius: 0 0 0 90px;
  display: inline-block;
  overflow: hidden;
  background-color: #fff6ed; 
}

.left-border img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
 	object-fit: cover;
}

.left-border-card {
border-radius: 0 0 0 90px;
}

.right-border-bottom img {
	border-radius: 0 0 90px 0;
  display: inline-block;
  overflow: hidden;
  background-color: #fff6ed; 
}

.right-border-bottom img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
 	object-fit: cover;
}

.right-border-top {
	border-radius: 0 90px 0 0;
  overflow: hidden;
}


.left-border-top .uk-tile-default {
		border-radius: 90px 0 0 0;
}