
/* General */

* {
	margin: 0;
	/* border: none; */
	padding: 0;
	box-sizing: border-box;
}

html,body {
	height: 100%;
}

body {
    color: #000;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    font-style: normal;
   	font-size: 14px;
}

a {
	color: #000;
	text-decoration: underline;
}

p {
	margin: 10px 0;
}

#wrapper {
	height: 100%;
	display: flex;
}

#control {
	flex-basis: 50%;
	overflow: auto;
	padding: 20px;
}

table {
	border-collapse: collapse;
}

th, td {
	border: 1px solid #000;
	padding: 5px 10px;
	vertical-align: top;
	text-align: left;
}

th {
	background: #000;
	color: #fff;
}

td {
	font-size: 12px;
}

#shop {
	flex-basis: 50%;
}

#shop iframe {
	width: 100%;
	height: 100%;
	vertical-align: top;
}
