/* YOUR CUSTOM CSS */

.profile-picture {
	width: 200px; /* Cambia este valor según lo necesites */
	height: 200px; /* Se mantiene igual que el ancho para mantener la proporción cuadrada */
	border-radius: 50%; /* Esto crea los bordes redondeados */
	overflow: hidden; /* Esto asegura que la imagen no sobresalga de los bordes redondeados */
	margin: auto;
	margin-x: auto;
	max-width: 300px;
	max-height: 300px;
}

.profile-picture img {
	width: 100%; /* La imagen ocupará todo el ancho del contenedor */
	height: 100%; /* La imagen ocupará todo el alto del contenedor */
	object-fit: cover; /* La imagen se ajustará para cubrir completamente el contenedor */
}

.cursor-drag{
	cursor: grab;
	
}

.btn_foto{
    position: relative;
	
}


.tab-status {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
	margin-top: 4px;
}
.dot {
	height: 10px;
	width: 10px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
}
.completed {
	color: #28a745;
}
.completed .dot {
	background-color: #28a745;
}
.not-completed {
	color: #ffc107;
}
.not-completed .dot {
	background-color: #ffc107;
}


.pricing .card {
	border: none;
	border-radius: .5rem;
	transition: transform .3s;
}
.pricing .card:hover {
	transform: scale(1.03);
}
.pricing .card.featured {
	margin-top: -30px;
	z-index: 1;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.pricing .card-header {
	text-align: center;
	padding: 2rem 1rem;
	color: #fff;
}
.pricing .card-header i {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.pricing .card-header.bg-dark {
	background: #343a40;
}
.pricing .card-header.bg-primary {
	background: #007bff;
}
.pricing .card-body {
	text-align: center;
	padding: 2rem;
}
.pricing .card-price {
	font-size: 2.5rem;
	font-weight: bold;
}
.pricing .list-group-item {
	border: none;
	padding: .75rem 1.25rem;
	text-align: left;
}