body {
    padding-bottom: 1rem;
	font-size: 15px;
}

header {
    padding: 0.5rem 0rem;
    border-bottom: 2px solid #6d1e3b;
    background-color: #FFF;
	position: sticky;
	top: 0px;
	z-index: 2;
	height: 80px;
}

nav a.active {
	color: var(--color-main);
	position: relative;
}

nav a.active::after {
	content: '';
	display: block;
	width: 60%;
	height: 5px;
	background-color: #9e395e;
	margin-top: 0.2rem;
	border-radius: 20px;
	position: absolute;
	bottom: -8px;
	left: 20%;
}

.btn-bloque {
    padding: 1.5rem 2rem;
    background-color: #f1eceedd;
    border: 2px dashed #e1ddde;
    cursor: pointer;
    border-radius: 8px;
    transition: border 0.3s ease, color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    width: 100%;
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.6;
}

.btn-bloque:hover {
	background-color: #f1ecee;
    border: 2px solid #c19ba9;
	opacity: 1;
}

#guardado {
    display: none;
    background-color: #d0f6c5;
    color: #1a6804;
    padding: 1rem;
    border-radius: 8px;
    position: fixed;
    top: 0.5rem;
    right: 2rem;
    z-index: 100;
}

.bloque {
    padding: 1rem;
    border: 0px solid #dce0e5;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 2px 4px;
    background-color: #FFF;
}

.select-tag {
    border: 1px solid #eee;
    height: 25px;
    border-radius: 20px;
    padding: 0.2rem;
    font-size: 0.8rem;
    width: auto;
}