@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');


body {
    background: url(../imagen/background-medical.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	font-family: 'Nunito', sans-serif, Arial !important;
    font-size: 1.2em !important;
}

.btn-primary:hover {
	background-color: #154360 !important;
	border-color: yellow !important;
}


#loader-container {
    background-color: #DCDCDC;
    opacity: 50%;
    display: none;
    z-index: 999;
}

#loader {
	width: 300px;
	padding: 15px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #2E94FA;
	--_m: 
		conic-gradient(#0000 10%,#000),
		linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
			mask: var(--_m);
	-webkit-mask-composite: source-out;
			mask-composite: subtract;
	animation: l3 1s infinite linear;
}

@keyframes l3 {to{transform: rotate(1turn)}}
