:root {

	/* Colors */
	--color-primary: #004AAD;
	--dark-color-primary: #002F6E;

	/* Fonts */
	--font-family: 'Poppins';

}

/* Set Fonts: Start */

html, body, button {
	font-family: var(--font-family);
}

/* hr.divider */

hr.divider {
	margin: 10px 0 !important;
	border-color: #F6F6F6;
	opacity: 1;
}

/* label.badge */

label.badge {
	font-size: 8pt !important;
	font-weight: 600;
	background: #00000010;
	color: #343a40;
	padding: 6px 10px;
	border-radius: 10px;
}

label.badge[data-color="gray"] {
	background: #00000010;
	color: #343a40;
}

label.badge[data-color="blue"] {
	background: #e3f2ff;
	color: #002C52;
}

label.badge[data-color="green"] {
	background: #e1fff0;
	color: #004222;
}

/* field_box */

.field_box {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
	gap: 3px;
}

.field_box label {
	position: relative;
	font-size: 9pt;
	font-weight: 400;
	color: #343a40;
	padding-left: 10px;
}

.field_box:has(*:required) label::after {
	content: '*';
	margin-left: .5ch;
	font-weight: 300;
	color: #ff0000;
}

.field_box .field_item {
	height: 45px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	border: 1px solid #fafafa;
	transition: all 400ms ease;
	gap: 10px;

	padding: 0 16px;
	background: #fafafa;
	border-radius: 25px;
}

.field_box .field_item input,
.field_box .field_item select {
	width: 100%;
	border: none;
	font-size: 10pt;
	background: transparent;
	transition: all 400ms ease;
	outline: none;
	all: none;
}

.field_box .field_item textarea {
	width: 100%;
	border: none;
	font-size: 10pt;
	background: transparent;
	outline: none;
	all: none;
}

.field_box .field_item:has(textarea) {
	padding: 10px 15px !important;
	height: 150px;
}

.field_box .field_item input[type="file"] {
	width: 1px;
	height: 1px;
	opacity: 0;
}

.field_box .field_item:has(input[type="file"]) {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	background: transparent;
	border: 1px dashed #343a4020;
	margin-top: 5px;
}

.field_box label.field_item::after {
	display: none !important;
}

.field_box p.message_error {
	font-size: 9pt;
	font-weight: 400;
	margin-bottom: 0px;
	color: #ff0000;
	letter-spacing: 130%;
	transition: all 400ms ease;
	margin-top: 5px;
	margin-left: 10px;
}

.field_box:has(p.message_error:not(:empty)) .field_item {
	border-color: #ff0000 !important;
}

.field_box p.message_error:empty {
	display: none !important;
}

/* button_box */

.button_box {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
	gap: 10px;
}

.button_box button {
	height: 45px;
	border-radius: 25px;
	border: 1px solid var(--color-primary);
	background: var(--color-primary);
	transition: all 300ms ease;
	font-size: 10pt;
	font-weight: 500;
	color: #ffffff;
}

.button_box button:hover {
	background-color: var(--dark-color-primary);
	border-color: var(--dark-color-primary);
}

.button_box button.btn_regular {
	background: transparent;
	border-color: transparent;
	color: var(--color-primary);
	transition: all 300ms ease;
	font-weight: 600;
}

.button_box button.btn_regular:hover {
	color: var(--dark-color-primary);
}

/* Titles */

div.title {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

div.title hr {
	width: 20px;
	border-width: 3px;
	border-color: var(--dark-color-primary);
	margin: 10px 0 !important;
}

div.title h1 {
	font-size: 16pt;
	font-weight: 500;
	margin-bottom: 0px;
}

div.title h2 {
	font-size: 14pt;
	font-weight: 500;
	margin-bottom: 0px;
}

div.title p {
	font-size: 11pt;
	font-weight: 300;
	margin-bottom: 0px;
	color: #343a40ac;
}

/* loaders */

button.loading {
	position: relative;
	color: transparent !important;
	transition: all 500ms ease;
}

button.loading::after {
	content: '';
	position: absolute;
	top: calc(50% - calc(20px / 2));
	left: calc(50% - calc(20px / 2));
	width: 20px;
	height: 20px;
	border: 2px solid white;
	border-radius: 50%;
	border-right-color: transparent;
	box-sizing: border-box;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
        rotate: 0deg;
	}
	100% {
        rotate: 360deg;
    }
}

/* swal */

.swal2-popup {
	padding: 15px 15px 40px 15px !important;
	border-radius: 60px !important;
	overflow: hidden !important;
}

.swal2-backdrop-show {
	backdrop-filter: blur(5px);
	background: #00000050 !important;
	opacity: 1 !important;
}

.swal2-popup h2 {
	font-weight: 600 !important;
	color: #0d0d0d !important;
}

.swal2-popup .swal2-html-container {
	font-weight: 300 !important;
	color: #979797 !important;
}

.swal2-popup .swal2-actions button {
	padding: 10px 20px !important;
	border-radius: 15px !important;
	transition: all 200ms !important;
	font-weight: 600;
}

.swal2-popup .swal2-actions button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.swal2-popup .swal2-warning {
	border-color: #f8bb86 !important;
	color: #ff9c45 !important;
}

.swal2-popup .swal2-info {
	border-color: #90e8d8 !important;
	color: #90e8d8 !important;
}

.swal2-popup .swal2-success-ring,
.swal2-popup .swal2-success-fix,
.swal2-popup .swal2-success-ring {
	border-color: #90e8d8 !important;
	color: #90e8d8 !important;
}

.swal2-popup .swal2-success-line-tip,
.swal2-popup .swal2-success-line-long {
	background-color: #90e8d8 !important;
}
}

.swal2-popup .swal2-error {
	border-color: #ff5858;
}

.swal2-popup .swal2-x-mark span {
	background-color: #ff3056;
}