


.card-grid .card{
  border:4px solid white;
  min-height:256px;
  border-radius:10px;
  margin-top:0px;
}

.card-grid.Transparent .card{
	color:black;
}
.card-grid.light .card{
	color:black;
}
.card-grid.dark .card{
	background-color:#54585a;
	color:white;
}
.card-grid.red .card{
	background-color:#c8102e;
	color:white;
}
.card-grid.green .card{
	background-color:green;
	color:white;
}


.card-grid .card-img-start{ 
  object-fit:cover;
  
}
.card-grid .round .card-body,
.card-grid .blocked .card-body,
.card-grid .card-body.pad-lefts{
	margin-left:205px;
}

.card-grid .rounded-circle{
  position:absolute;
  height:256px;
  width:256px;
  top:-25px;
  left:-50px;
  border:6px solid white;
}
.card-grid .blocked img{
  position:absolute;
  height:256px;
  width:256px;
  top:-50px;
  left:-50px;
  border:6px solid white;
}

.card-grid img.general{
  width:200px;
  border-right:6px solid white;
}





.card-grid .card-group {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.card-grid .card {
  border-radius: 0.5rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.card-grid .card-horizontal {
  flex-direction: row;
  max-width: 600px;
}

.card-grid .card-img-top {
  width: 100%;
  height: auto;
}

.card-grid .card-img-start {
  width: 256px;
  height: auto;
  object-fit: cover;
}

.card-grid .card-img-top{
	height:256px;
	max-height:256px;
}

.card-grid .card-circle-left {
	border-radius: 50%;
  height:256px;
  width:256px;
  object-fit:cover;
	position:relative;
	margin:1rem;
	margin-left:-2rem;
	margin-top:-2rem;
  border:6px solid white;
}

.card-grid .card-body {
	
  	z-index: 1;
}

/* Card - Circle Center */
.card-circle-wrapper {
  position: relative;
  padding-top: 128px; /* Half of 256px image height */
}

.card.card-circle-layout {
  position: relative;
  text-align: center;
  overflow: visible;
  min-height:300px;
}

.card-circle-center {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -128px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}

.card.card-circle-layout .card-body {
  margin-top: 60px;
  padding-top: 0;
  z-index: 0;
}


/* Card - Square Center */
.card-square-wrapper {
  position: relative;
  padding-top: 64px; 
}

.card.card-square-layout {
  position: relative;
  text-align: center;
  overflow: visible;
  min-height:300px;
}

.card-square-center {
  width: 128px;
  height: 128px;
  object-fit: cover;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}

.card.card-square-layout .card-body {
  margin-top: 100px;
  padding-top: 0;
  z-index: 0;
}

