.loader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 10vh;
}

.sa_button {
	color: white;
	border-radius: 14px;
	padding: 20px 70px;
	font-size: 25px;
	text-wrap: nowrap;
	width: 100%;
	height: 60px;
	border-width: 3px;
	font-size: 18px;
	border-style: solid;
}

.sa_img_button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sa_button_red {
	background-color: var(--lt-base-red);
}

.sa_small {
	font-size: 14px !important;
	width: 120px !important;
	height: 40px !important;
}

.sa_button_outline {
	background: transparent;
	border-style: solid;
	border-width: 3px;
	border-radius: 14px;
	padding: 20px 70px;
	font-size: 25px;
	text-wrap: nowrap;
	width: 100%;
	height: 60px;
}

.sa_logo_corner {
	position: fixed;
	top: 90px;
	left: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.sa_logo {
	width: 40px;
	height: 40px;
}

.sa_logo_corner > p {
	color: var(--lt-base-blue);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 32px */
}

.sa_textfield_wrapper {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 5px;
	min-height: 56px;
	position: relative;
}

.sa_password_toggle_button {
	position: absolute;
	top: 47px;
	right: 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	z-index: 9999;
}

.sa_textfield {
	border-radius: 8px;
	width: 100%;
	background-color: var(--lt-black-white);
}

.sa_textfield_input {
	padding: 15px;
	border-radius: 8px;
	font-size: 12px;
}

.sa_textfield_label {
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	color: var(--lt-base-blue);
}

.sa_link {
	color: var(--lt-base-blue);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.sa_textfield_error {
	position: absolute;
	right: 45px;
	margin-top: 55px;
}

.error-border {
	border: 2px solid var(--lt-base-red);
}

.sa-switch {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 65%;
}

.sa_error_badge {
	display: flex;
	flex-direction: row;
	gap: 15px;
	padding: 20px;
	width: 100%;
	border: 2px solid var(--lt-base-red);
	color: var(--lt-black);
	border-radius: 20px;
	background-color: #F8DADA;
}

.sa_icon_btn {
	border-radius: 99px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sa_menu_item {
	width: 100%;
	height: 56px;
	background: var(--lt-black-white);
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	flex-direction: row;
	padding: 15px 25px;
}

.top_row {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.top_row,
.middle_row {
	border-bottom: 1px solid var(--lt-base-background);
}

.bottom_row {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.sa_select {
	width: 100%;
	height: 100%;
	padding: 5px 16px;
	appearance: none;
	background: white;
	border: 1px solid var(--lt-black-gray);
	border-radius: 4px;
}

.sa-card {
	border-radius: 16px;
	background-color: var(--lt-black-white);
	box-shadow: 0 67px 40px 0 rgba(199, 202, 220, 0.05), 0 30px 30px 0 rgba(199, 202, 220, 0.09), 0 7px 16px 0 rgba(199, 202, 220, 0.10);
	border: 1px solid var(--lt-base-blue-accent-3);
}

.sa-card-header {
	display: flex;
	justify-content: space-between;
	color: var(--lt-base-blue);
}

.sa-card-content {
	padding: 20px 15px;
	border-radius: 16px;
	border: 1px solid #E1E5F0;
}

.sa-card-item-content {
	padding-top: 1rem;
	display: flex;
	font-size: 13px;
	align-items: center;
}

.sa-card-content.center {
	align-items: center;
}

.sa-card-information {
	padding-left: 1vh;
	color: var(--lt-black);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
}

.sa-card-title {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mud-main-content {
	padding-top: 0px !important;
	min-height: 100vh !important;
	display: flex;
	flex-direction: column;
}