.calc-container {
    display: flex;
	width: 95%;
	margin: 0 auto;
	flex-wrap: wrap;
}

.calcTop {
	width: 100%;
    padding: 0px;
    display: flex;
	box-sizing: border-box;
	padding-bottom: 10px;
	justify-content: left;
    align-items: start;
}

.calcLeavingSoon {
	display: flex;
	background: #e6ba33;
	background-image: linear-gradient(to bottom, #e6ba33 50%, #d6a72e 50%);
	padding: 10px !important;
	color: #000;
	font-family: 'UbuntuBold', Ubuntu, sans-serif;
	box-sizing: border-box;
	font-size: 13px;
	text-align: center;
    user-select: none;
	border: solid 1px black;
	border-radius: 5px;
	z-index: 10;
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0px auto 10px auto;
}

.calcTitleBar {
	display: flex;
	margin: 0 0px 10px 0px;
	font-family: var(--font-family-bold); 
	background: var(--feye-blue-light);
	color: var(--secondary-color-dark);
	padding: 10px;
	font-size: var(--font-size-large);
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
}

.calcTopTextBar {
	width: calc(60% - 10px);
	display: flex;
    flex-direction: column; 
	box-sizing: border-box;
}
.calcTopKey {
	width: 40%;
	margin-left: 10px;
	box-sizing: border-box;
}

.calcTopTextBar_Box {
	background: var(--background-color);
	padding: 10px;
	border-radius: 5px;
	min-height: 200px;
}

.calcTopTextBar_Box span {
	margin-bottom: 2px;
	font-size: var(--font-size-small-plus);
	font-family: var(--font-family-normal);
}
.calcTopTextBar_Box h2 {
	margin-top: 2px;
	margin-bottom: 2px;
	font-family: var(--font-family-bold);
	font-size: var(--font-size-medium);
	font-weight: normal;
}
.calcMain {
	width: 100%;
	min-width: 1050px;
    display: flex;
	box-sizing: border-box;
	-webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
	flex-wrap: wrap;
	color: var(--secondary-color-light);
}

.calcKey, .calcKey span {
	display: block;
}
.calcKey {
	margin: 5px;
}

.calcTopTab {
	position: relative;
	top: 6px;
	z-index: 1;
	height: 300px !important;
	display: flex !important;
	padding: 5px !important;
}
.calcTopTabMid {
	width: calc(100% - 280px) !important;
}
.calcFront {
	z-index: 2;
}
.calcSideW {
	width: 140px !important;
}

.calcTab {
	height: 100%;
	width: 100%;
	background: var(--background-color);
    border-radius: 3px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 5px;
	z-index: 5;
}

.calcTabYouCont, .calcTabThemCont {
	/*height: calc(512px - 57px);*/
	/*display: flex !important;
	flex-direction: column;*/
	box-sizing: border-box;
	/*overflow-y: scroll;*/
	margin-top: 2px;
	margin-bottom: 2px;
}


.data-table-Calc {
	display: table;
    width: 100%;
    table-layout: fixed;
	border-collapse:collapse;
	border:0px solid var(--grey-color);
	
	color: var(--secondary-color);
	font-size: var(--font-size-medium);
	border-spacing: 0.1;
	border-collapse: separate;
	border-radius: 5px;
	box-sizing: border-box;
}

.data-table-Calc th, .data-table-Calc td {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border-collapse:collapse;
}
.data-table-Calc th {
	background: var(--feye-blue-light);
    height: 20px;
	color: var(--secondary-color-dark);
	font-size: var(--font-size-medium);
	font-family: var(--font-family-bold);
	border:0px solid var(--grey-color);
	font-weight: normal;
	padding: 10px 0px 10px 0px !important;
}

.data-table-Calc tbody tr, .data-table-Calc tbody td {
	height: 22.8px;
}

.data-table-Calc td:first-child {
    font-family: var(--font-family-bold); 
}
.data-table-Calc td:not(:empty):nth-last-child(3) {
	border: 1px solid var(--feye-blue) !important;
	color: var(--feye-blue);
	font-size: var(--font-size-medium-plus);
	font-family: var(--font-family-bold);
}
.data-table-Calc td:not(:empty):nth-last-child(2) {
	border: 1px solid var(--graph-pink-border) !important;
	color: var(--graph-pink-border);
	font-size: var(--font-size-medium-plus);
	font-family: var(--font-family-bold);
}
.data-table-Calc td:not(:empty):last-child {
	border: 1px solid var(--graph-blue-border) !important;
	color: var(--graph-blue-border);
	font-size: var(--font-size-medium-plus);
	font-family: var(--font-family-bold);
}

.data-table-Calc thead th:first-child {
	border-top-left-radius: 5px; 
}
.data-table-Calc td:first-child,
.data-table-Calc th:first-child {
    width: 55%;
}
.data-table-Calc td:not(:first-child),
.data-table-Calc th:not(:first-child) {
    width: 15%;
}
.data-table-Calc thead th:last-child {
    border-top-right-radius: 5px; 
}
.data-table-Calc tfoot th:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 5px;
}
.data-table-Calc tfoot th:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 5px;
}

table.data-table-Calc td {
	background: var(--lighter-grey-color);
}

.data-table-Calc th, .data-table-Calc td {
	padding: 10px;
}

.data-table-Calc thead, .data-table-Calc tfoot {
	width: 100%;
	box-sizing: border-box;
}
.data-table-Calc td.tabFurni {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	text-align: left;
}
.tabQuantity, .tabAverage, .tabSoldAverage {
	 
}

.desaturate {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter:    grayscale(100%);
    -ms-filter:     grayscale(100%);
    -o-filter:      grayscale(100%);
	opacity: 50%;
}

.calcTabTitle {
	width: 100%;
	border-radius: 3px;
    border: #8d8d89 1px solid;
	display: flex;
	padding: 3px;
	background: #c9c9c9;
	box-sizing: border-box;
}

.calcEvaluateImg {
	width: 20px;
	height: 20px;
	image-rendering: pixelated;
	margin: 0 4px 0 4px;
}
.calcEvaluate {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 10px;
	box-sizing: border-box;
}
.calcEvaluateText {
	margin: 0px 2px 0px 2px;
}
.evaGrid_1 {
	text-align: right;
	justify-content: right;
}
.evaGrid_2 {
	text-align: left;
	justify-content: left;
}

.calcCont::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.calcCont::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.calcCont::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border: 1px solid #000000;
  border-radius: 50px;
  margin: 1px;
}
.calcCont::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}
.calcCont::-webkit-scrollbar-thumb:active {
  background: #a3a3a3;
}
.calcCont::-webkit-scrollbar-track {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 1px;
}
.calcCont::-webkit-scrollbar-track:hover {
  background: #ffffff;
}
.calcCont::-webkit-scrollbar-track:active {
  background: #ffffff;
}
.calcCont::-webkit-scrollbar-corner {
  background: transparent;
}

.tabRowData {
	height: 22px;
	display: flex;
	box-sizing: border-box;
	padding: 2px;
	border-bottom: black 1px dashed;
}

.calcOfferingCont {
	width: 480px;
	display: flex;
	flex-wrap: wrap;
	margin: 0px 0px 10px 0px;
}
.calcMainMid {
	width: 480px;
	margin: 10px 0px 0px 0px;
	display: flex;
	flex-direction: column; 
}

.calcSide {
/*	background: #e2e2e2;
	background-image: -moz-linear-gradient(180deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 8px), -moz-linear-gradient(90deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 5px);
	background-image: -webkit-linear-gradient(180deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 8px), -webkit-linear-gradient(90deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 5px);
	background-image: linear-gradient(180deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 8px), linear-gradient(90deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 5px);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d3d3d3",endColorstr="#e2e2e2",GradientType=1);*/
    padding: 5px 15px 5px 10px;
    border-radius: 5px;
    border: #bebebe 1px solid;
    margin-bottom: 2px; 
    display: flex;
	box-sizing: border-box;
	height: 266px;
	text-align: center;
	justify-content: center;
	font-family: 'UbuntuNormal', Ubuntu, sans-serif;
	font-size: 12px;
	font-smooth: always;
	letter-spacing: -0.3px;
	padding: 0px;
	display: block;
}
.calcOffering {
	width: 50%;
}

.calcInv {
	width: 480px;
	background: #eceae0;
    border-radius: 5px;
    border: #bebebe 1px solid;
    margin-bottom: 2px; 
    display: flex;
	box-sizing: border-box;
	height: 272px;
	text-align: center;
	justify-content: center;
	font-family: 'UbuntuNormal', Ubuntu, sans-serif;
	font-size: 12px;
	font-smooth: always;
	letter-spacing: -0.3px;
	display: block;
}
.calcSideBar {
	width: calc(((100% - 480px) / 2) - 20px);
	min-width: 265px;
	border: none;
	box-sizing: border-box;
	position: relative;
	margin: 10px;
	height: 552px;
}
.calcTopText, .calcCredits, .calcSearch, .calcSearchResults {
	display: flex;
	justify-content: center;
}
.calcTopText {
	margin-top: 10px;
}
.calcTopText h2 {
	display: inline;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.3px;
}
.calcTopText .titleBold {
    font-family: 'UbuntuNormal', Ubuntu, sans-serif !important;
	font-weight: bold;
	margin-right: 4px;
}

.calcGridContainer {
	width: 140px;
	height: 140px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
	margin: 10px auto 10px auto;
}
.calcGridBox {
	width: 40px !important;
	height: 40px !important;
	background: rgb(211,211,211);
	background: -moz-linear-gradient(180deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 8px), -moz-linear-gradient(90deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 5px);
	background: -webkit-linear-gradient(180deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 8px), -webkit-linear-gradient(90deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 5px);
	background: linear-gradient(180deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 8px), linear-gradient(90deg, rgba(211,211,211,1) 0%, rgba(226,226,226,0) 5px);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d3d3d3",endColorstr="#e2e2e2",GradientType=1);
	border-radius: 5px;
    border: #bebebe 1px solid;
	display: flex;
	justify-content: center; 
    align-items: center;
	position: relative;
	cursor: pointer;
}
.calcGridBox img {
	max-width: 100%; 
    max-height: 100%;
}
.calcCellCount {
	background: grey;
	padding: 2px 4px 2px 4px;
	font-size: 10px;
	position: absolute;
	bottom: -5px;
	right: -5px;
	color: white;
	border-radius: 5px;
}

.calcClearBut {
	background: #e6ba33;
	background-image: linear-gradient(to bottom, #e6ba33 50%, #d6a72e 50%);
	padding: 10px !important;
	color: #000;
	font-family: 'UbuntuBold', Ubuntu, sans-serif;
	box-sizing: border-box;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
	border: solid 1px black;
	border-radius: 5px;
	z-index: 10;
	display: block;
	width: 95%;
	box-sizing: border-box;
	margin: 0px auto 5px auto;
}
.calcClearBut:active {
	background-image: linear-gradient(to bottom, #c6a126 50%, #b69521 50%) !important;
}

.calcCountContainer {
	margin: 0px auto 0px auto;
	display: flex;
	flex-wrap: wrap;
	width: 118px;
}
.calcCountContainer_Text {
	justify-content: left;
	text-align: left;
	display: flex;
	width: 80px;
	flex-wrap: wrap;
}
.calcPadlockContainer {
	height: 38px;
	width: 38px;
}
.calcPadlock {
	margin-top: 6px;
	margin-right: 6px;
}
.calcItemsText {
	margin-left: 4px;
}
.calcCreditsText {
	margin-left: 2px;
}
.calcCreditsCount {
	width: 30px;
    font-family: 'UbuntuNormal', Ubuntu, sans-serif !important;
	font-size: 12px;
    border: #bebebe 1px solid;
	padding: 1px;
	align-self: flex-start;
	background: #e2e2e2;
	position: relative;
	left: -2px;
}


.calcInvSearch {
	background: #c9c9c9;
	border-radius: 3px;
	height: 25px;
	margin: 5px 8px 3px 8px;
	text-align: left;
	justify-content: left; 
	display: flex;
}
.calcInvSearch input {
	border: #505050 1px solid; 
	border-right: none;
	background: #fff;
	border-radius: 8px 0px 0px 8px;
	height: 20px;
	margin: 3px 0px 2px 4px;
	width: 150px;
	box-sizing: border-box;
	padding: 1px 1px 1px 5px; 
	font-size: 13px;
	font-family: 'UbuntuNormal', Ubuntu, sans-serif !important;
}
.calcInvSearchEnd {
	border: #505050 1px solid; 
	border-left: none;
	background: #fff;
	border-radius: 0px 8px 8px 0px;
	height: 20px;
	margin: 3px 4px 2px 0px;
	width: 15px;
	box-sizing: border-box;
}
.calcInvSearchCancel {
	margin-top: 4px;
	cursor: pointer;
}
.calcInvLeft {
	width: 294px;
	height: 232px;
	display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 4px;
	overflow: hidden;
	padding-left: 9px;
	box-sizing: border-box;
}
.calcInvContainer {
	display: flex;
	flex-wrap: no-wrap;
}
.calcInvItem {
	width: 40px;
	height: 40px;
	background: #cbcbcb;
	/*-webkit-box-shadow: 0px 1px 0px 0px rgba(118,117,112,1);
	-moz-box-shadow: 0px 1px 0px 0px rgba(118,117,112,1);
	box-shadow: 0px 1px 0px 0px rgba(118,117,112,1);*/
	cursor: pointer;
	display: flex;
	justify-content: center; 
    align-items: center;
}
.calcInvItem img {
	max-width: 100%; 
    max-height: 100%;
}
.calcInvRight {
	width: calc(100% - 294px);
	height: 232px;
	display: flex;
	flex-direction: column; 
	/*justify-content: center;*/
	align-items: center;
}
.calcInvPreview {
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.calcInvPreview img {
	image-rendering: pixelated;
	transform: scale(3);
  	transform-origin: center;
}
.calcInvFurniName {
	text-align: left;
	padding: 0px 8px 0px 8px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 4px;
	height: 52px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.calcInvYourButton, .calcInvTheirButton {
	display: flex;
	justify-content: center;
}
.invBut {
	background: #d9d9d9;
	height: 20px;
	margin: 3px 0px 2px 4px;
	width: 120px;
	box-sizing: border-box;
	padding: 1px 5px 1px 5px; 
	font-size: 13px;
	font-family: 'UbuntuNormal', Ubuntu, sans-serif !important;
	background-image: linear-gradient(to bottom, #F3F3F3 50%, #D9D9D9 50%);
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}
.invBut:active {
    background-image: linear-gradient(to bottom, #e0e0e0 50%, #cfcfcf 50%);
}
.calcInvYourButton input, .calcInvTheirButton input {
	height: 20px;
	margin: 3px 0px 2px 4px;
	width: 40px;
	box-sizing: border-box;
	padding: 1px 5px 1px 5px; 
	font-size: 13px;
	font-family: 'UbuntuNormal', Ubuntu, sans-serif !important;
}

.pixel-corners-5,
.pixel-corners--wrapper-5 {
  clip-path: polygon(0px calc(100% - 3px),
    1px calc(100% - 3px),
    1px calc(100% - 2px),
    2px calc(100% - 1px),
    3px calc(100% - 1px),
    3px 100%,
    calc(100% - 3px) 100%,
    calc(100% - 3px) calc(100% - 1px),
    calc(100% - 2px) calc(100% - 1px),
    calc(100% - 1px) calc(100% - 2px),
    calc(100% - 1px) calc(100% - 3px),
    100% calc(100% - 3px),
    100% 3px,
    calc(100% - 1px) 3px,
    calc(100% - 1px) 2px,
    calc(100% - 2px) 1px,
    calc(100% - 3px) 1px,
    calc(100% - 3px) 0px,
    3px 0px,
    3px 1px,
    2px 1px,
    1px 2px,
    1px 3px,
    0px 3px);
  position: relative;
}
.pixel-corners-5 {
  border: 1px solid transparent;
}
.pixel-corners--wrapper-5 {
  width: fit-content;
  height: fit-content;
}
.pixel-corners--wrapper-5 .pixel-corners-5 {
  display: block;
  clip-path: polygon(1px 3px,
    2px 3px,
    2px 2px,
    3px 2px,
    3px 1px,
    calc(100% - 3px) 1px,
    calc(100% - 3px) 2px,
    calc(100% - 2px) 2px,
    calc(100% - 2px) 3px,
    calc(100% - 1px) 3px,
    calc(100% - 1px) calc(100% - 3px),
    calc(100% - 2px) calc(100% - 3px),
    calc(100% - 2px) calc(100% - 2px),
    calc(100% - 3px) calc(100% - 2px),
    calc(100% - 3px) calc(100% - 1px),
    3px calc(100% - 1px),
    3px calc(100% - 2px),
    2px calc(100% - 2px),
    2px calc(100% - 3px),
    1px calc(100% - 3px));
}
.pixel-corners-5::after,
.pixel-corners--wrapper-5::after {
  content: "";
  position: absolute;
  clip-path: polygon(0px calc(100% - 3px),
    1px calc(100% - 3px),
    1px calc(100% - 2px),
    2px calc(100% - 1px),
    3px calc(100% - 1px),
    3px 100%,
    calc(100% - 3px) 100%,
    calc(100% - 3px) calc(100% - 1px),
    calc(100% - 2px) calc(100% - 1px),
    calc(100% - 1px) calc(100% - 2px),
    calc(100% - 1px) calc(100% - 3px),
    100% calc(100% - 3px),
    100% 3px,
    calc(100% - 1px) 3px,
    calc(100% - 1px) 2px,
    calc(100% - 2px) 1px,
    calc(100% - 3px) 1px,
    calc(100% - 3px) 0px,
    3px 0px,
    3px 1px,
    2px 1px,
    1px 2px,
    1px 3px,
    0px 3px,
    0px 50%,
    1px 50%,
    1px 3px,
    2px 3px,
    2px 2px,
    3px 2px,
    3px 1px,
    calc(100% - 3px) 1px,
    calc(100% - 3px) 2px,
    calc(100% - 2px) 2px,
    calc(100% - 2px) 3px,
    calc(100% - 1px) 3px,
    calc(100% - 1px) calc(100% - 3px),
    calc(100% - 2px) calc(100% - 3px),
    calc(100% - 2px) calc(100% - 2px),
    calc(100% - 3px) calc(100% - 2px),
    calc(100% - 3px) calc(100% - 1px),
    3px calc(100% - 1px),
    3px calc(100% - 2px),
    2px calc(100% - 2px),
    2px calc(100% - 3px),
    1px calc(100% - 3px),
    1px 50%,
    0px 50%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  display: block;
  pointer-events: none;
}
.pixel-corners-5::after {
  margin: -1px;
}


.calcNote {
	font-weight: bold;
	display: block;
}