* {
	--primary-color: #28282a;
	--secondary-color: #FFF;

	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

body {
	/* min-height: 100vh; */
	height: 100%;
	width: 100%;

	margin: 0;
	padding: 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	background: var(--primary-color) !important;

	overflow: hidden;
	overflow-y: scroll;
}

.navbar_custom {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;

	background-color: var(--primary-color);

	z-index: 10;
}

.navbar_custom_toggler {
	color: var(--secondary-color);
}

.navbar_li_item {
	color: var(--secondary-color);
	font-size: 15px;
}

.alert_placeholder {
	position: absolute;
	top: 5px;
	right: 10px;

	width: fit-content;
	height: fit-content;

	z-index: 1056;
}

.form {
	width: 250px;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.form_label_color {
	color: var(--secondary-color);
}

.form_button {
	background: var(--secondary-color);
	
	color: var(--primary-color);
	
	border-color: transparent;
}

.form_button:hover {
	background: var(--primary-color);
	
	color: var(--secondary-color);

	border-color: var(--secondary-color);

	transition: 0.5s;
}

.form_button:active {
	background: var(--primary-color);
	
	color: var(--secondary-color);

	border-color: var(--secondary-color);
}

.form_button:focus {
	background: var(--secondary-color);
	
	color: var(--primary-color);

	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.25rem  var(--secondary-color);
}

.form_large {
	width: 100%;
}

.form_overflow {
	overflow: scroll;

	padding-bottom: 40px;
}

.form_centralize {
	width: 100%;
}

.form_overflow::-webkit-scrollbar {
	width: 0;
}

.form_input_container_large {
	width: 280px;
}

.table_content {
	padding: 0px 10px;
}

.table_custom {
	padding: 0px 10px;
}

.table_tr_custom:hover {
	cursor: pointer;
}

.table_custom_column_text {
	color: var(--secondary-color);
}

.table_custom_row_text {
	color: var(--secondary-color);
}

.update_title {
	font-size: 24px;
	color: var(--secondary-color);

	margin-bottom: 20px;
}

.logo_image {
	margin-bottom: 15px;
}