:root {
	--blue-dark: #497174;
	--blue-bright: #527f83;
	--white-dark: #D6E4E5;
	--white-bright: #EFF5F5;
	--red: #eb6440;
	--border-white-dark: #c6c5db;
	--border-white-bright: #adc5c7;
}

@font-face {
	font-family: LCD;
	src: url("FrozenCrystal.otf") format("opentype");
}

body {
	font-family: "Trebuchet MS", sans-serif;
	margin: 0;
	padding: 0;
	color: var(--blue-dark);
	background-color: var(--blue-bright);
	position: relative;
	/*font-family: "Gill Sans", sans-serif;*/
	display: inline-block;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: #395a5c;
}

.page {
	display: flex;
}

.icon {
	/* filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.801)); */
	width: 24px;
	background-repeat: no-repeat;
}

.content {
	padding-top: 60px;
	display: flex;
	flex-wrap: wrap;
}

a {
	text-decoration-style: dotted;
	color: #395ea1;
}

.markinfo {
	color: #a93e3e;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--blue-dark);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #476e70;
}

.head {
	font-size: 20px;
	font-weight: 600;
	padding: 0;
	margin-bottom: 5px;
}

/*#######################################################*/
.modal-window {
	display: flex;
	flex-direction: column;
	background-color: var(--white-dark);
	border: 1px solid var(--border-white-dark);
	border-radius: 4px;
	padding: 4px;
	margin: 10px;
	margin-right: 0;
	width: auto;
	height: auto;
	box-shadow: 0 0 10px 5px #00000008;
	position: relative;
}

.modal-head {
	font-size: 16px;
	font-weight: 600;
	padding: 0;
	/* margin-bottom: 5px; */
	/* width: 100%; */
	text-transform: uppercase;
	/* display: flex; */
	/* flex-shrink: 1; */
}

.compact {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
}

.compact div,
.compact label {
	padding: 0;
	height: auto;
	width: auto;
	min-width: unset;
	margin: 0 auto;
	margin-right: 7px;
}

.compact div::before,
.compact label::before {
	position: unset;
	background-color: unset;
	width: unset;
	height: unset;
	bottom: unset;
}

.modal-actions {
	display: flex;
	gap: 10px;
	/* flex-wrap: wrap; */
	/* justify-content: space-evenly; */
	/* margin-bottom: 10px; */
	/* align-items: center; */
}


.modal-list {
	width: 100%;
	height: auto;
	background-color: unset;
	overflow-y: auto;
	overflow-x: hidden;
	margin-bottom: 0;
}

.modal-list-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white-bright);
	min-height: 25px;
	height: auto;
	width: 100%;
	padding: 0 8px;
	margin-bottom: 3px;
	font-size: 18px;
	vertical-align: middle;
	text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
	border: 1px solid var(--border-white-bright);
	font-size: 16px;
	position: relative;
}

.modal-list-row input {
	display: none;
}

.modal-list-row:has(input:checked) {
	border: 3px solid #a12c0d;
	position: sticky;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.modal-list-row:hover {
	border-bottom: 2px solid var(--red);
}

.modal-colum-name {
	display: flex;
	justify-content: space-between;
	margin: 3px 0;
	font-weight: 600;
	padding: 0 8px;
}

.modal-row-input {
	background-color: var(--white-bright);
	padding: 5px 8px;
	border-radius: 4px;
	width: auto;
	border: 1px solid var(--border-white-dark);
	margin-bottom: 5px;
	position: relative;
}

.modal-row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* align-items: center; */
	height: fit-content;
	margin-bottom: 5px;
}

/*#######################################################*/
.leftbar {
	background: var(--blue-dark);
	width: 190px;
	height: 100%;
	position: fixed;
}

.leftbar-row {
	height: 100%;
	/*background-color: var(--blue-bright);*/
	display: flex;
	align-items: center;
	justify-content: center;
	width: 136px;
	margin-right: 10px;
}

.leftbar-row p {
	color: var(--blue-dark);
	font-size: 22px;
	font-weight: 600;
}

.row-btn {
	margin: unset;
	margin-bottom: 15px;
	height: 40px;
	padding: 5px;
	justify-content: flex-start;
}

.row-btn a {
	font-size: 16px;
	font-weight: 100;
	margin-left: 5px;
	color: var(--white-bright);
	text-decoration: none;
}

.row-btn img {
	filter: invert(1);
}

.row-btn:hover,
.row-btn:hover {
	background-color: #395a5c;
	cursor: pointer;
}

/*#######################################################*/

.rightbar {
	width: 100vw;
	/*height: 100vh;*/
	/*background: var(--white-bright);*/
	/*padding-left: 190px;*/
}

.nav {
	height: 60px;
	width: 100%;
	background-color: var(--white-dark);
	/*box-shadow: 0 2px 3px 0px #bac8c9;*/
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 2;
	flex-wrap: wrap;
	/*left: 190px;*/
}

.navbtn {
	width: auto;
	background-color: var(--white-bright);
	display: flex;
	align-items: center;
	padding: 10px;
	box-shadow: 0 2px 3px 0px #bac8c9;
	border-radius: 4px;
	color: #395a5c;
	margin-right: 10px;
	cursor: pointer;
	position: relative;
}

.navbtn:hover {
	background-color: #f8ffff;
	box-shadow: 0 1px 1px 0px #bac8c9;
}

.navbtn p {
	font-size: 18px;
}

.navbtn a {
	text-decoration: none;
	color: #395a5c;
	font-size: 18px;
	font-size: 18px;
}

/*#######################################################*/

/*#######################################################*/
.windowsrow {
	display: flex;
	flex-direction: row;
	height: auto;
	width: 100%;
	height: 550px;
}

.actionbtn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* position: relative; */
	width: 30px;
	height: 30px;
	padding: 2px;
	cursor: pointer;
	transition: box-shadow 0.5s;
	border-radius: 50%;
}

.actionbtn input[type=checkbox] {
	display: none;
}

.actionbtn:has(input:checked) {
	animation: 1s linear warnEditing;
	animation-iteration-count: infinite;
}

/* .actionbtn:has(input:disabled) {
	opacity: 0.2;
	cursor: context-menu;
}*/

.actionbtn:hover {
	/* content: ""; */
	/* position: absolute; */
	/* background-color: var(--red); */
	/* width: 100%; */
	/* height: 100%; */
	border-radius: 50%;
	bottom: 0;
	box-shadow: 0px 0px 7px rgba(4, 66, 116, 0.767);
	transition: box-shadow 0.5s;
	/* background-color: rgba(116, 64, 4, 0.534); */
}

/* .actionbtn:hover::before {
	content: "";
	position: absolute;
	/* background-color: var(--red);
width: 100%;
height: 100%;
border-radius: 50%;
bottom: 0;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.24);
transition: 0.5s;
}*/

input::placeholder {
	color: var(--blue-bright);
	font-size: 16px;
}

input[type=text],
input[type=password] {
	background-color: unset;
	height: 30px;
	border: none;
	outline: none;
	border-bottom: 1px solid var(--blue-dark);
	font-size: 18px;
}

input.search {
	background-color: unset;
	background-image: url(../icons/search.png);
	background-repeat: no-repeat;
	background-position-y: 6px;
	background-size: 20px;
	width: 260px;
	height: 30px;
	padding: 3px;
	/* margin-top: auto; */
	margin-bottom: 5px;
	border: none;
	outline: none;
	border-bottom: 1px solid var(--blue-dark);
	font-size: 20px;
	padding-left: 25px;
}

input.search.odo {
	background-color: unset;
	background-image: unset;
	width: 97px;
	height: 30px;
	padding: 3px;
	margin-top: auto;
	margin-bottom: 0;
	border: none;
	outline: none;
	border-bottom: 1px solid var(--blue-dark);
	font-size: 20px;
}

input.search.odo~span {
	align-self: flex-end;
}

select {
	border: 1px solid var(--blue-dark);
	width: 100px;
	outline: none;
	border-radius: 3px;
}


/*#######################################################*/
.infowindow {
	/*height: 100%;*/
	background-color: unset;
	font-size: 16px;
	font-weight: 800;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.infowindow p {
	padding-right: 10px;
}


/*#######################################################*/
.clienttaginfo {
	position: fixed;
	width: auto;
	top: 60px;
	background-color: #ededed;
	padding: 5px;
	font-weight: 600;
	border: 1px solid #cbcbcb;
	border-radius: 4px;
	z-index: 1;
	opacity: 1;
	text-transform: uppercase;
	opacity: 0;
}

/*#######################################################*/
.partscontent {
	display: flex;
	height: 650px;
}

.client-setup {
	width: 271px;
}

.orders-setup {
	width: 162px;
}

.orders-setup .modal-list .modal-list-row.warning-mark::after {
	right: 98px;
}

.parts-setup {
	width: auto;
}

.work-setup {
	width: 250px;
	max-height: 45%;
}

.work-setup .modal-row-input input,
.bank-setup .modal-row-input input {
	width: 45%;
}

.work-setup .modal-row-input {
	display: flex;
	justify-content: space-between;
}

.bank-setup {
	width: 250px;
	/*max-height: 293px*/
}

.bank-setup .modal-row-input {
	display: flex;
	justify-content: flex-end;
}

#bank-list .modal-list-row {
	cursor: unset;
}

#bank-list .modal-list-row:hover {
	border-bottom: 1px solid var(--border-white-bright);
	border-width: 1px;
}

#bank-list .modal-list-row:nth-child(3) {
	border: 2px solid;
}

#bank-list .modal-list-row:nth-child(4) {
	border-color: green;
	cursor: pointer;
}

.payList {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: white;
	padding: 0 10px;
}

.payList div {
	display: flex;
	justify-content: space-between;
}

.payList div:hover {
	background-color: lightgray;
}

#deletePay {
	cursor: pointer;
	transform: rotate(45deg);
	font-size: 20px;
}

/*#bank-list :nth-child(3){
	font-weight:600;
	border:3px solid #4f7a7d;
}*/
/*#######################################################*/
.parts-setup .modal-list-row {
	justify-content: unset;

}

.parts-setup .modal-row-input input {
	padding: 0;
	margin: 0;
}

.col-1 {
	width: 260px;
	word-break: break-word;
	margin-right: 8px;

}

.col-2 {
	width: 180px;
	word-break: break-word;
	margin-right: 5px;
	white-space: pre-wrap;
}

.col-3 {
	width: 65px;
	margin-right: 5px;
}

.col-4 {
	width: 30px;
	margin-right: 5px;
	text-align: center;
}

.col-5 {
	width: 110px;
	margin-right: 5px;
}

.col-6 {
	width: 90px;
	margin-right: 5px;
}

/*#######################################################*/
.popup {
	position: absolute;
	left: 250px;
	top: 150px;
	display: none;
	flex-direction: column;
	background-color: white;
	/*height: 260px;*/
	width: 250px;
	padding: 15px;
	border-radius: 15px;
	box-shadow: 20px 15px 81px 0 rgb(0 0 0 / 10%);
	z-index: 2;
}

.popup * {
	margin: 5px;
}

.popup button {
	height: 30px;
	background-color: var(--blue-dark);
	border: unset;
	border-radius: 4px;
	color: white;
	cursor: pointer;
}

.popup::before {
	content: "";
	background-color: white;
	position: absolute;
	width: 20px;
	height: 20px;
	left: -10px;
	top: 40px;
	transform: rotate(45deg);
}

#closePopup {
	position: absolute;
	right: 10px;
	top: 0px;
	transform: rotate(45deg);
	font-size: 30px;
	width: 10px;
	height: 10px;
	cursor: pointer;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

/*#######################################################*/
.popup-ask {
	position: absolute;
	left: 250px;
	top: 80px;
	display: none;
	flex-direction: column;
	background-color: white;
	height: auto;
	width: 250px;
	padding: 15px;
	border-radius: 15px;
	box-shadow: 20px 15px 81px 0 rgb(0 0 0 / 10%);
	z-index: 2;
}

.popup-ask * {
	margin: 5px;
}

.popup-ask button {
	height: 30px;
	width: 50%;
	background-color: var(--blue-dark);
	border: unset;
	border-radius: 4px;
	color: white;
	cursor: pointer;
}

.popup-ask::before {
	content: "";
	background-color: white;
	position: absolute;
	width: 20px;
	height: 20px;
	left: -10px;
	top: 40px;
	transform: rotate(45deg);
}

.popup-ask .modal-list-row {
	background: unset;
	border: unset;
	padding: 0;
	margin: 0;
}

.hide {
	display: none;
}

.popup-credit {
	width: 380px;
	min-height: 100px;
	max-height: 450px;
	left: 500px;
	top: 70px;
	background-color: white;
	position: fixed;
	z-index: 3;
	border-radius: 15px;
	padding: 15px;
	padding-top: 35px;
	box-shadow: 20px 15px 81px 0 rgb(0 0 0 / 10%);
	display: none;
}

.popup-credit::before {
	content: "";
	width: 0px;
	height: 0px;
	border: 15px solid white;
	position: absolute;
	top: -29px;
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
}

.close-popup-credit {
	font-size: 35px;
	transform: rotate(45deg);
	position: absolute;
	right: 7px;
	top: 0px;
	cursor: pointer;
}

.credit-content {
	width: 100%;
	max-height: 400px;
	overflow-y: auto;
}

.credit-content div {
	cursor: pointer;
}

.credit-content div:hover {
	background-color: var(--white-bright);
}

/*#######################################################*/
.login-window {
	width: 250px;
	height: 150px;
	background-color: white;
	border-radius: 17px;
	margin: 10% auto;
	border: 1px solid #adadff;
	box-shadow: #0451956e 0px 20px 150px 70px;
	display: flex;
}

.login-window form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: space-around;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
	gap: 10px;
}

.login-window form input[type=text],
.login-window form input[type=password] {
	text-align: center;
}

.login-window form input[type=submit] {
	height: 35px;
	width: 70px;
	/*border: 1px solid var(--blue-dark);*/
	border: unset;
	border-radius: 5px;
	color: var(--blue-dark);
	background-color: white;
	cursor: pointer;
}

/*#######################################################*/
.create-note {
	height: 28px;
	border: unset;
	padding: 5px;
	border-bottom: 1px solid #497174;
	background: var(--blue-dark);
	cursor: pointer;
	font-size: 14px;
	color: white;
}

.note-row {
	display: flex;
	margin: 5px auto;
	justify-content: space-between;
	border-bottom: 1px solid #e6e5ff;
}

.note-text {
	width: 210px;
	word-wrap: break-word;
}

.note-dell-btn {
	width: 33px;
	height: auto;
	background-color: var(--red);
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

.note-dell-btn::before {
	content: "+";
	font-size: 25px;
	transform: rotate(45deg);
}

.popup-credit input[type=text] {
	width: 214px;
}

/*#######################################################*/
.manufactors,
.dilers {
	width: 400px;
	height: 250px;
}

.manufactor-content {
	display: flex;
	flex-wrap: wrap;
	height: auto;
	overflow-y: auto;
	overflow-x: hidden;
}

.global-search .manufactor-content {
	flex-direction: column;
}

.manufactor-content input[type=text] {
	width: 120px;
	height: 25px;
}

.manufactor-item {
	border: 1px solid var(--blue-dark);
	padding: 2px;
	display: flex;
	margin: 1px;
	background-color: var(--white-bright);
}

.close-item {
	width: 14px;
	height: 100%;
	cursor: pointer;
	position: relative;
}

.close-item::before {
	content: "+";
	transform: rotate(45deg);
	font-size: 22px;
	position: absolute;
	top: -20%;
	left: 25%;
}

.add-manufactor {
	font-size: 22px;
	width: 30px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	display: inline-block;
}

.drag-line {
	min-height: 5px;
	background: var(--red);
}

/*#######################################################*/
.pre-input-list {
	/* width: 99%; */
	max-height: 500px;
	width: 100%;
	background-color: white;
	/* min-height: 20px; */
	height: fit-content;
	position: absolute;
	top: 105px;
	left: 0px;
	z-index: 2;
	box-shadow: 1px 1px 5px rgba(65, 1, 1, 0.493);
	overflow: hidden;
	overflow-y: auto;
}

.pre-input-row:hover {
	cursor: pointer;
	background-color: lightgray;
}

.pre-input-col-1 {
	margin-left: 10px;
	width: 268px;
	display: inline-block;
}

.pre-input-col-2 {
	display: inline-block;
	width: 180px;
}

.pre-input-col-3 {
	display: inline-block;
	width: 82px;
}

.pre-input-col-4 {
	display: inline-block;
	width: 40px;
}

.pre-input-col-5 {
	display: inline-block;
	width: 110px;
}

/*#######################################################*/
.pay-window {
	width: calc(100% + 20%);
	min-height: 40px;
	background-color: white;
	position: absolute;
	right: calc(100% + 20px);
	top: 205px;
	border-radius: 5px;
	display: none;
	padding: 7px;
	box-shadow: 11px 12px 20px 0px #00000026;
}

.pay-window::after {
	content: "";
	width: 0;
	height: 0;
	right: -17px;
	top: 5px;
	position: absolute;
	border-top: 15px solid transparent;
	border-left: 20px solid white;
	border-bottom: 15px solid transparent;
}

.pay-window div {
	display: flex;
	justify-content: space-between;
}

.pay-window span:last-child {
	transform: rotate(45deg);
	cursor: pointer;
	font-size: 20px;
}

.global-search {
	width: 600px;
	min-height: 200px;
}







/*###############################################################################################*/
@media screen and (max-width:500px) {
	.nav {
		height: auto;
		width: 100%;
		background-color: var(--white-dark);
		z-index: 2;
		position: relative;
	}

	.navbtn {
		width: 100%;
		height: 40px;
		background-color: var(--white-bright);
		display: flex;
		align-items: center;
		padding: 10px;
		box-shadow: 0 2px 3px 0px #bac8c9;
		border-radius: 4px;
		color: #395a5c;
		margin-right: 0;
		cursor: pointer;
		position: relative;
	}

	.content {
		padding-top: 0;
		display: flex;
		flex-wrap: wrap;
	}

	.rightbar {
		width: 100%;
	}

	.modal-window {
		margin: 0px;
		margin-top: 10px;
		height: 550px;
	}

	.windowsrow {
		flex-wrap: wrap;
	}

	.orders-setup,
	.client-setup {
		width: 50%;
	}

	.modal-list-row {
		font-size: 24px;
		height: 50px;
	}

	.last-block {
		display: flex;
	}

	.last-block .modal-window {
		width: 50%;
		min-height: 320px;
	}

	.actionbtn p {
		font-size: 18px;
	}

	.actionbtn {
		height: 50px;
	}

	input.search {
		height: 50px;
		width: 300px;
	}

	.infowindow {
		flex-direction: row;
		font-size: 24px;
	}
}

/*###############################################################################################*/

.mastersWindow {
	background-color: white;
	min-width: 230px;
	/* min-height: 100px; */
	height: auto;
	position: fixed;
	/* top: 40px; */
	display: none;
	flex-direction: column;
	padding: 10px;
	z-index: 99;
	cursor: default;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.247);
}

.mastersWindow li {
	list-style-type: none;
	cursor: pointer;
	padding: 5px;
	display: flex;
	/* justify-content: flex-end; */
	gap: 3px;
}

.mastersWindow li:hover {
	background: lightgray;
}


.notif {
	background-color: #d8d8d8;
	width: 100%;
	height: auto;
	border: 2px solid red;
}

.title {
	background-color: #da1717;
	height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}

.name {
	color: #ffffff;
}

.close {
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 10px;
}

.close::before {
	content: "";
	width: 13px;
	height: 2px;
	background-color: #ffffff;
	position: absolute;
	font-size: 30px;
	/* transform: rotate(45deg); */
	/* right: 0; */
	/* top: 8px; */
	bottom: 0;
}


.body {
	display: flex;
	padding: 5px;
	justify-content: space-between;
}

.body-text {
	font-weight: 600;
}

.del-msg {
	cursor: pointer;
}


/* ОКНО ДОБАВЛЕНИЯ/изменения КЛИЕНТА________________⇩⇩⇩⇩⇩__________________________________________________________*/
.add-edit-client {
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(158, 156, 156, 0.5);
	position: fixed;
	z-index: 3;
	backdrop-filter: blur(1px);
}

.add-edit-form * {
	color: #424246;
}

.add-edit-form {
	width: 370px;
	height: 500px;
	background-color: #f5f1f1;
	display: flex;
	flex-direction: column;
	padding: 20px;
	align-items: center;
	box-shadow: 5px 5px 20px 2px #0000005e;
}

.add-edit-form input {
	border-radius: 4px;
	border: 1px solid #424246;
	padding: 10px;
	height: 40px;
	margin-top: 4px;
	width: 100%;
}

.add-edit-form i {
	font-size: 12px;
	color: #7c7777;
}

.add-edit-form ::placeholder {
	color: #7c7777;
	font-size: 14px;
}

.add-edit-form form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.form-row {
	padding-bottom: 15px;
}

.add-edit-form input[type="submit"] {
	width: 100px;
	align-self: center;
	height: 30px;
	padding: 0;
	background-color: #d4d9dd;
}

/* ОКНО ДОБАВЛЕНИЯ КЛИЕНТА_______⇫⇫⇫⇫⇫⇫______________________________________________________________*/

/* .add-edit-form:has(.diag-row){ */
.add-edit-form {
	width: 550px;
	/* gap: 10px; */
	top: 70px;
	position: absolute;
	overflow: hidden;
	overflow-y: auto;
}

.diag-row {
	border: 1px solid rgba(0, 0, 0, 0.295);
	display: flex;
	flex-direction: column;
	/* gap: 2px; */
	width: 100%;
	padding: 10px;
	background-color: #ececec;
}

.diag-head {
	font-weight: 600;
}

.diag-row span {}

.diag-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.diag-btn {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.diag-btn button {
	padding: 0 4px;
	font-size: 14px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.164);
}

.diag-btn button:disabled {
	padding: 0 4px;
	font-size: 14px;
	box-shadow: unset;
	color: #78787a;
}


#notes .add-edit-form {
	width: 500px;
}

#notes form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#notes form label {
	display: flex;
	align-items: center;
	gap: 10px;
}

#notes form input[type=checkbox] {
	width: unset;
	margin: unset;
	height: unset;
}

#notes form input[type=button] {
	width: 80px;
	height: 30px;
	padding: 0;
	align-self: flex-end;
}

#notes form input[name=href] {
	display: none;
}

#notes form:has(input[type=checkbox]:checked) input[name=href] {
	display: flex;
}

#notes .content {
	padding: 10px 0;
	width: 100%;
	margin: unset;
	gap: 10px;
}

#notes .diag-row {
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	/* gap: 10px; */
}


.km {
	font-family: "LCD";
	font-size: 20px;
	font-weight: 300;
	margin-right: 0;
	margin-left: auto;
	padding: 0 10px;
}