body {
    background-color: #F8F5F5;
}

.bg-primary-red {
    background-color: #A32F47;
}

.bg-secondary-red {
    background-color: #EEC2CB;
}

.kt-tab-toggle.active {
    font-weight: bold;
    color: black;
}

.transition {
    transition: all 0.6s ease;
}

.btn-primary-red {
    background-color: transparent;
    border: 1px solid #A32F47;
    color: #A32F47;
    box-shadow: none;
    transition: all 0.3s ease;
}

.btn-primary-red.active {
    background-color: #A32F47;
    color: #fff;
}

.btn-primary-red:hover {
    background-color: #A32F47;
    color: #fff;
}

/* Loader progress bar */
.custom_loader_progress-bar {
	position: relative;
}

.custom_loader_progress-bar {
	width: 100%;
	height: 10px;
	border-radius: 5px;
	background: linear-gradient(90deg, #A32F47 30%, #f3f3f3 30%);
	background-size: 300% 100%;
	animation: custom_progress 1.6666666666666667s ease-in-out infinite;
}

@keyframes custom_progress {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: -100% 0;
	}
}
/* End of Loader progress bar */