* {
	margin: 0px;
	padding: 0px;
	font-family: 'Quicksand', sans-serif;
	outline: none;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

p, h1, h2, h3, label {
	color: #666;
}

body {
    background-color: #E4E4E4;
}

body::-webkit-scrollbar { 
  display: none;
}

main {
	margin-left: 250px;
    padding: 0 4rem;
    overflow: hidden;
}

a {
	color: inherit;
}

.card {
    background-color: white;
    border-radius: var(--border-radius-2);
    box-shadow: .25rem .25rem 1rem 0 rgba(0,0,0,0.10);
    word-wrap: break-word;
    overflow: hidden;
}

.documentos-archivos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.documentos-archivos a {
    display: flex;
    height: 40px;
    align-items: center;
    max-width: 250px;
    margin-bottom: 1rem;
}

.documentos-archivos .fas {
    font-size: 1rem;
}

.documentos-archivos a p {
    color: #fff!important;
}

/* OVERLAY */

.overlay-1, .overlay-2, .overlay-3, .overlay-4 {
    display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
	overflow-y : auto;
	padding-left: 250px;
}

.loading {
    position: fixed;
	top: 90%;
    left: 50%;
    margin-left: -50px;
	width: 50px;
	height: 50px;
	background-color: rgba(0,0,0,0.50);
	border-radius: .5rem;
	content: url("/images/resources/loading.svg");
	z-index: 1;
}

/* FUENTE */

.f-titulo-1, .f-titulo-2, .f-titulo-3, .f-titulo-4 {
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    overflow: hidden;
}

.f-titulo-1 {
    font-size: 2.5rem;
    font-weight: bolder;
}

.f-titulo-2 {
    font-size: 1.5rem;
    font-weight: bolder;
}

.f-titulo-3 {
    font-weight: 600;
}

.f-titulo-4 {
    font-weight: 500;
}

.f-texto-1, .f-texto-2 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.f-texto-1 {
	color: #666;
}

.f-texto-2 {
    font-size: .8rem;
	color: #666;
}

.f-link {
	cursor: pointer;
}

.tt-lowercase {
    text-transform: lowercase;
}

.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}

.f-white {
	color: white;
}

.f-black {
	color: black;
}

.f-blue {
	color: rgba(77, 5, 232, 1);
}

.f-red {
	color: rgba(231,76,60,1.00);
}

.f-bold {
	font-weight: bold;
}

.f-align-left {
	text-align: left;
}

.f-align-center {
	text-align: center;
}

.f-align-right {
	text-align: right;
}

/* FLOAT */

.f-left{
	float: left;
}

.f-right {
	float: right;
}

/* PADDING */

.padding {
	padding: 1rem;
}

.padding-2 {
	padding: .5rem;
}

.p-vertical {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.p-horizontal {
	padding-left: 1rem;
	padding-right: 1rem;
}

.p-left {
	padding-left: 1rem;
}

.p-right {
	padding-right: 1rem;
}

.p-top {
	padding-top: 1rem;
}

.p-bottom {
	padding-bottom: 1rem;
}

/* MARGIN */

.margin {
	margin: 1rem;
}

.m-vertical {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.m-horizontal {
	margin-left: 1rem;
	margin-right: 1rem;
}

.m-left {
	margin-left: 1rem;
}

.m-left-2 {
	margin-left: .5rem;
}

.m-right {
	margin-right: 1rem;
}

.m-right-2 {
	margin-right: .5rem;
}

.m-top {
	margin-top: 1rem;
}

.m-top-2 {
	margin-top: .5rem;
}

.m-bottom {
	margin-bottom: 1rem;
}

.m-bottom-2 {
	margin-bottom: .5rem;
}

/* POSICIONES */

.p-absolute {
    position: absolute;
}
.p-relative {
    position: relative;
}
.p-fixex {
    position: fixed;
}

/* TAMAÑO */

.w-100 {
	width: 100%;
}

.w-75 {
	width: 75%;
}

.w-50 {
	width: 50%;
}

.w-45 {
	width: 45%;
}

.w-30 {
	width: 30%;
}

.w-25 {
	width: 25%;
}

.w-20 {
	width: 20%;
}

.w-15 {
    width: 15%;
}

.w-10 {
    width: 10%;
}

.w-150 {
    width: 150px;
    max-width: 150px;
}

.w-200 {
    width: 200px;
    max-width: 200px;
}

.w-250 {
    width: 250px;
    max-width: 250px;
}

.w-300 {
    width: 300px;
    max-width: 300px;
}

.w-400 {
    width: 400px;
    max-width: 400px;
}

.w-500 {
    width: 500px;
    max-width: 500px;
}

.w-600 {
    width: 600px;
    max-width: 600px;
}

.w-750 {
    width: 750px;
    max-width: 750px;
}

.w-800 {
    width: 800px;
    max-width: 800px;
}

.w-900 {
    width: 900px;
    max-width: 900px;
}

.w-1000 {
    width: 1000px;
    max-width: 1000px;
}

.h-32 {
	height: 32px;
}

/* MISC */

.d-block {
	display: block;
}

.d-inline {
	display: inline;
}

.d-flex {
	display: flex;
}

.d-none {
	display: none;
}

.sombra-1 {
    box-shadow: 0 4px 16px 0 rgba(0,0,0,.25);
}

.border {
	border-radius: .5rem;
}

.center {
	margin: 0 auto;
}

.center-vertical {
	margin: 1rem auto;
}

.center-bottom {
    margin: 0 auto 1rem;
}

.justify {
	text-align: justify;
}

.t-align-right {
	text-align: right;
}

.j-space-between {
	justify-content: space-between;
}

.no-select {
	user-select: none;
}

.align-content {
	align-content: center;
	align-items: center;
}

.td-underline {
	text-decoration: underline;
}

.tag-pdf, .tag-rojo, .tag-amarillo, .tag-verde, .tag-gris, .tag-azul {
    padding: .5rem;
    font-weight: 600;
    border-radius: .5rem;
    user-select: none;
    max-width: 110px;
}

.tag-pdf {
    background-color: rgba(231,76,60,1.00);
    color: #FFFFFF;
    transition: .25s background-color, .25s color;
}

.tag-pdf:hover {
    background-color: #A82331;
    color: #FFFFFF;
}

.tag-rojo {
    background-color: #ffcdd2;
    color: #c62828;
}

.tag-amarillo {
    background-color: #fff0c2;
    color: #a68b00;
}

.tag-verde {
    background-color: #c8e6c9;
    color: #388e3c;
}

.tag-azul {
    background-color: #cce5ff;
    color: #004085;
}

.tag-gris {
    background-color: #e2e3e5;
    color: #383d41;
}

.separador {
    display: block;
    width: 100%;
    padding: 0 1rem;
    border-bottom: 1px solid #999;
}

/* VARIABLES */

:root {
    --bc-verde-1: rgba(14,161,85,1.00);
    --bc-verde-2: rgba(8,97,51,1.00);
    --bc-verde-3: rgba(5,70,37,1.00);
    --bc-rojo-1: rgba(231,76,60,1.00);
    --bc-rojo-2: rgba(214,43,26,1.00);
    --bc-rojo-3: rgba(183,36,22,1.00);
	
	--padding-1: .25rem;
	--padding-2: .5rem;
	--padding-3: .75rem;
	--padding-4: 1rem;
	
	--margin-1: .25rem;
	--margin-2: .5rem;
	--margin-3: .75rem;
	--margin-4: 1rem;
	
	--border-radius-1: .1rem;
	--border-radius-2: .25rem;
	--border-radius-3: .5rem;
	--border-radius-4: .75rem;
}

@media (max-width: 800px) {
    .w-10, .w-15, .w-20, .w-25, .w-30, .w-45, .w-50, .w-75, .w-200, .w-500, .w-900 {
		width: 100%;
	}
	
	main, .overlay-1, .overlay-2, .overlay-3, .overlay-4 {
        padding: 0 1rem;
		margin: 0;
	}
    
    .documentos-archivos {
        justify-content: space-around;
    }
}