/* TABLET SCREENS */

.fa_button {
	color: white;
	border-radius: 20px;
	padding: 20px 70px;
	font-size: 25px;
	text-wrap: nowrap;
	width: 100%;
	height: 100%;
}

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

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

.fa_small {
	font-size: 14px !important;
	width: 240px !important;
	height: 40px !important;
}

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

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

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

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

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

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

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

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

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

.fa_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;
}

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

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

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

.fa_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;
}

.fa_icon_btn {
	border-radius: 99px;
	display: flex;
	justify-content: center;
	align-items: center;
	
	:hover {
		cursor: pointer;
	}
	
	> img {
		width: 40px;
		height: 40px;
		flex-shrink: 0;
	}
}

.fa_menu_item {
	width: 100%;
	height: 74px;
	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;
}

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

.fa-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);
}

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

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

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

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

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

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

/* PHONE SCREENS */
@media screen and (max-width: 393px) {
	.fa_logo_corner {
		top: 70px;
		left: 20px;
	}

	.fa_logo {
		width: 30px;
		height: 30px;
	}

	.fa_logo_corner > p {
		font-size: 16px;
	}

	.fa-button {
		padding: 15px 50px;
		font-size: 18px;
		width: 75%;
	}
}

@media (max-width: 500px){
	.fa_password_toggle_button {
		top: 48px !important;
	}
}