/*---------------DEFAULT---------------*/
.loader {
	width: 24px;
	height: 24px;
	border: 3px solid #e0e0e0;
	border-top: 3px solid #007bff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: auto;
	position: absolute;
	z-index: 999;
	display: none;
	top: 50%;
	left:50%;
	margin-left: -12px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.errorBorder_color {border-color: #cf020d !important;}
/*---------------END---------------*/

/*---------------ALERT---------------*/
.alert_station {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;	
	width: 320px;
}

.alert_form {
	position: relative;
	background-color: #ccc;
	color: white;
	border-radius: 4px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	width: 100%;
	display: flex;
	flex-direction: column;
	animation: fadeIn 0.3s ease;
}
.bg_green {background: #42d29d;}
.bg_red {background: #fa6767;}
.bg_yellow {background: #f9bc0d;}
.bg_blue {background: #44badc;}

@keyframes fadeIn {
  from {
	opacity: 0;
	transform: translateY(-10px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
	opacity: 1;
	transform: translateY(0);
  }
  to {
	opacity: 0;
	transform: translateY(-10px);
  }
}

.fade-out {
  animation: fadeOut 0.4s forwards;
}
.alert_form_body {
	padding: 12px 16px;
	font-size: 14px;
	line-height: 1.5;
	word-break: break-word;
	flex-grow: 1;
}

/*---------------END---------------*/

/*---------------Personal_account---------------*/
.img-thumbnail {padding: 1px;}
.avatar-lg img {width: 100px;}
.table-responsive .table {
	color: #404b67 !important;
}
.table-responsive .table tbody tr:hover td {background: #f6f7fb !important;}
/*---------------END---------------*/