/* Disable button in Input field on Chrome, Safari, Edge, Opera, Firefox */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

iframe:focus {
	outline: none;
  }
  
iframe[seamless] {
display: block;
}

.layout-grid-container {
	display: grid;
	grid-template-areas:
	  /* 'header header header header header header' */
	  'menu main main'
	  'menu main main';
	gap: 10px;
	padding: 10px;
	border: none;
	background-color: #2196F3;
  }

.my_iframe {
	gap: 10px;
	margin: 6px;
	width: calc(100% - 350px);
	height: auto;
}

.tables {
	border-collapse: collapse;
	width: 30%;
}

.table_head {
	text-align: center;
	height: 30px;
}

.table_div {
	text-align: center;
}

.table_row {
	max-height: 30px;
}

.table, .table_head, .table_div {
	border: 1px solid black;
}

p {
	font-size: 12;
	font-weight: bold;
}

.img_insert {
	max-width: 100%;
}

.input_num {
	font-weight: 800;
	text-align: right;
	width: 50px;
}

.btn_cal {
	width: 150px;
	height: 40px;
	text-align: center;
	font-weight: 800;
	font-size: 16;
}

.lbl_ketqua {
	font-size: 15;
	font-weight: bold;
	color: blueviolet;

}

.txt_ketqua {
	font-size: 15;
	font-weight: bold;
	font-style: italic;
	color: red;
}

.grid-container {
	max-width: 100%;
	position: relative;
	display: grid;
	align-items: center;
	grid-template: auto / auto auto auto auto auto auto auto auto;
}

.grid-item {
	display: inline-block;
	max-width: 190px;
	padding: 1px;
	column-gap: 1px;
	row-gap: 1px;
}

.grid-image {
	max-width: 100%;
	height: auto;
}


* {
	box-sizing: border-box;
}

.menu {
	float: left;
	max-width: 300px;
}

.menuitem {
	max-width: 100%;
	height: auto;
	padding: 5px;
	margin-top: 1px;
	border-bottom: 1px solid #f1f1f1;
}

.main {
	float: left;
	width: 70%;
	padding: 0 20px;
	overflow: hidden;
}

.desktop_container {
	max-width: 100%;
	align-items: center;
}

.mobile_container {
	max-width: 100%;
	align-items: center;
}

.input_no_button {
	/* Chrome, Safari, Edge, Opera */
	input::-webkit-outer-spin-button,
	input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
	}

	/* Firefox */
	input[type=number] {
	-moz-appearance: textfield;
	}
}


@media only screen and (max-width: 800px) {
	.desktop_container {
		display: inline;
	}

	.tables {
		width: 100%;
	}

	.mobile_container {
		display: block;
	}
}
