/*
 * HRD System
 * Designed by Degiam [https://degiam.github.io]
 * Copyright (c) 2022
 */

/* Base */
	body {
		background-color: var(--light);
	}
	.container,.container-fluid {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}

/* Size */
	.fs-1 {
		font-size: calc(1.5rem + 1.5vw) !important;
	}
	.fs-2 {
		font-size: calc(1.4rem + .9vw) !important;
	}
	.fs-3 {
		font-size: calc(1.3rem + .6vw) !important;
	}
	.fs-4 {
		font-size: calc(1.275rem + .3vw) !important;
	}
	.fs-5 {
		font-size: calc(1.2rem + .2vw) !important;
	}
	.fs-6 {
		font-size: calc(.85rem + .2vw) !important;
	}
	.fs-7 {
		font-size: .75rem !important;
	}

/* Border */
	.rounded-1 {
		border-radius: .25rem !important;
	}
	.rounded-2 {
		border-radius: .5rem !important;
	}
	.rounded-3 {
		border-radius: .75rem !important;
	}

/* Cursor  */
	.cursor-pointer {
		cursor: pointer;
	}