@import "./reset.css";
.notifier-bottom {
	margin: 0px auto;
	bottom: 32px;
	left: 0px;
	right: 0px;
	width: 600px;
}
.notifier-top {
	margin: 0px auto;
	top: 32px;
	left: 0px;
	right: 0px;
	width: 600px;
}
.notifier-top-right {
	top: 32px;
	right: 16px;
	width: 400px;
}
.notifier-bottom-right {
	bottom: 32px;
	right: 16px;
	width: 400px;
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}
.notifier {
	padding: 8px 16px;
	border-radius: 4px;
	margin: 8px 0;
}
.notifier.success {
	background: var(--color-300);
	color: var(--color-50);
}
@keyframes notifier-animation-enter-opacity {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes notifier-animation-leave-opacity {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
ul[class*="notifier-"] {
	list-style: none;
	position: fixed;
	transition: all 0.5s ease-in-out;
	z-index: 10031;
	animation-iteration-count: 1;
	display: inline-block;
}
ul[class*="notifier-"] > li {
	background-position: center left 16px;
	background-repeat: no-repeat;
	background-size: 36px;
	border-radius: 4px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
		0 2px 10px 0 rgba(0, 0, 0, 0.12);
	cursor: pointer;
	padding: 16px 16px 16px 68px;
	word-wrap: break-word;
	width: 100%;
}
ul[class*="notifier-"] > li:focus,
ul[class*="notifier-"] > li:hover {
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2),
		0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
ul[class*="notifier-"] > li:not(:last-of-type) {
	margin-bottom: 16px;
}
ul[class*="notifier-"] > li > .message {
	color: #ffffff;
}
ul[class*="notifier-"] > li > .title {
	color: #ffffff;
	font-weight: 700;
}
ul[class*="notifier-"] > li.au-enter-active {
	animation: notifier-animation-enter-opacity 1s;
}
ul[class*="notifier-"] > li.au-leave-active {
	animation: notifier-animation-leave-opacity 0.5s;
}
.notifier-success {
	background: #388d54;
}
.notifier-warning {
	background: #ffb74d;
}
.notifier-danger {
	background: #b71c1c;
}
.notifier-info {
	background: #4dd0e1;
}
@media (max-width: 568px) {
	.notifier-bottom {
		width: calc(100% - 32px);
	}
}

.dialog-container {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	overflow: hidden;
	outline: 0;
	opacity: 1;
	display: grid;
	justify-items: center;
	align-items: start;
	background-color: rgba(0, 0, 0, 0.4);
}
.dialog-comfirm {
	width: auto;
	margin: 0 16px;
	max-width: 420px;
	width: calc(100% - 32px);
	top: 10%;
	position: relative;
	z-index: 2000;
	background-color: var(--primary-background);
}
.dialog-comfirm.enter {
	animation: fadeInTop 0.5s forwards;
}
.dialog-comfirm.leave {
	animation: fadeOutTop 0.5s forwards;
}
.dialog-comfirm .dialog-title {
	font-weight: 700;
	text-transform: uppercase;
	padding: 16px;
}
.dialog-comfirm .dialog-content {
	padding: 16px;
	margin-bottom: 16px;
}
.dialog-comfirm .dialog-footer {
	display: grid;
	grid-template-columns: 1fr 96px 96px;
	grid-gap: 8px;
	padding: 16px;
	align-items: center;
	justify-items: center;
}
.dialog-comfirm .btn {
	width: 100%;
	font-size: var(--font-size);
	line-height: var(--input-height);
	height: var(--input-height);
	text-align: center;
	text-decoration: none;
	-webkit-border-radius: var(--input-radius);
	-moz-border-radius: var(--input-radius);
	-ms-border-radius: var(--input-radius);
	-o-border-radius: var(--input-radius);
	border-radius: var(--input-radius);
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease-out;
	color: var(--primary-color);
	background-color: var(--button-background);
}
.dialog-comfirm .btn.btn-submit {
	background-color: var(--primary);
	color: #fff;
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOutTop {
	100% {
		opacity: 0;
		transform: translate(0, -100%);
	}
	0% {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInTop {
	100% {
		transform: none;
	}
	0% {
		transform: translate(0, -100%);
	}
}

::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-thumb {
	background: rgba(128, 128, 128, 0.4);
}
::-webkit-scrollbar-track {
	background-color: transparent;
}
:root {
	--color-50: #f0f7ff;
	--color-100: #dfeeff;
	--color-200: #b8deff;
	--color-300: #79c4ff;
	--color-400: #32a6fe;
	--color-500: #078cf0;
	--color-600: #006dcd;
	--color-700: #0056a6;
	--color-800: #034a89;
	--color-900: #083866;
	--color-950: #06274b;
	--slate-50: #f8fafc;
	--slate-100: #f1f5f9;
	--slate-200: #e2e8f0;
	--slate-300: #cbd5e1;
	--slate-400: #94a3b8;
	--slate-500: #64748b;
	--slate-600: #475569;
	--slate-700: #334155;
	--slate-800: #1e293b;
	--slate-900: #0f172a;
	--slate-950: #020617;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
	--gray-950: #030712;
	--input-height: 40px;
	--ratio: 1;
}
@media screen and (max-width: 1600px) {
	:root {
		--ratio: calc(1600 / 1920);
	}
}
@media screen and (max-width: 1440px) {
	:root {
		--ratio: calc(1440 / 1920);
	}
}
@media screen and (max-width: 1366px) {
	:root {
		--ratio: calc(1366 / 1920);
	}
}
@media screen and (max-width: 1280px) {
	:root {
		--ratio: calc(1280 / 1920);
	}
}

@media screen and (max-width: 1024px) {
	:root {
		--ratio: calc(1024 / 1920);
	}
}
@media screen and (max-width: 768px) {
	:root {
		--ratio: 0.4;
	}
}
body[data-theme="light"] {
	--primary: #083866;
	--primary-background: #ffffff;
	--secondary-background: #f6f7fd;
	--active-background: #eff6ff;
	--primary-text: #1e293b;
	--secondary-text: #94a3b8;
	--active-text: #0056a6;
	--error-text: #ef4444;
	--danger-color: #ef4444;
	--danger-background: #ef444433;
	--warning-color: #ff9800;
	--warning-background: #ff980033;
	--info-color: #006dcd;
	--info-background: #006dcd1a;
	--success-color: #00ab55;
	--success-background: #00ab551a;

	--primary-border: rgb(232, 227, 227);

	--primary-hover: #ebeef9;

	--primary-active: #0056a6;
	--primary-error: #ef4444;
	--input-background: #fff;
	--input-border: rgb(232, 227, 227);
	--input-hover: #078cf0;
	--input-active: #0056a6;
}
body[data-theme="dark"] {
	--primary: #083866;
	--primary-background: #010b1f;
	--secondary-background: #030d24;
	--primary-text: #ebf4f7;
	--secondary-text: #a7cad9;
	--primary-error: #ef4444;
	--error-text: #ef4444;
	--danger-color: #ef4444;
	--danger-background: #ef444433;
	--warning-color: #ff9800;
	--warning-background: #ff980033;
	--info-color: #2196f3;
	--info-background: #2196f31a;
	--success-color: #00ab55;
	--success-background: #00ab551a;
	--primary-border: #b8deff;
	--primary-hover: #078cf0;
	--primary-active: #0056a6;
	--input-border: #b8deff;
	--input-hover: #078cf0;
	--input-active: #0056a6;
}
html,
body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
html {
	font-size: 16px;
	/* Thiết lập font-size cơ bản cho phần tử gốc */
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", roboto,
		"Helvetica Neue", helvetica, arial, sans-serif;
	font-feature-settings: normal;
	font-kerning: auto;
	font-weight: normal;
	font-style: normal;
	color: var(--primary-color);
	line-height: var(--line-height);
	font-size: 16px;
	line-height: 22px;
	width: 100vw;
	height: 100vh;
	color: rgb(136, 130, 119);
	background-color: rgb(242 241 241);
	background-color: rgb(52 70 219);
	overflow-y: auto;
}

navy-app {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-height: 0;
	background-color: rgb(242 241 241);
}
/* 
.yhy-append-wrap {
	position: fixed;
	bottom: 16000px;
	left: 16px;
}

.yhy-append .yhy-append-btn{
	background-color: transparent !important;
} */