@import url("https://fonts.googleapis.com/css?family=Ubuntu");
@import url("https://fonts.googleapis.com/css?family=Ubuntu+Mono");

:root {
	--main-color: #808384;
	--border-thickness: 4px;
	--right-font-color: #ffffff;
    --solyx-green: #78c562;
    --solyx-orange: #F05824;
}

*, html {
	font-family: "Ubuntu";
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border-collapse: collapse;
}

.container {
	width: 1040px; 
	height: 794px; 
	margin: 20px auto 0;
	box-sizing: content-box;
}

.child-left {
	border-top: 
		var(--border-thickness) 
		solid 
		var(--main-color);
	border-bottom: 
		var(--border-thickness) 
		solid 
		var(--main-color);
	border-left: 
		var(--border-thickness) 
		solid 
		var(--main-color);
	position: relative;
	float: left;
	width: 80%;
	height: 100%;
}

.main-content {
	vertical-align: middle;
	height: calc(100% - 23px);
	width: 100%;
	display: flex;
	align-items: center;
}

.center-top-to-bottom {
	height: 500px;
	width: 100%;
	display: flex;
    justify-content: center;
	margin-left: 55px;
}

.center-left-to-right {
	width: 665px;
	height: 100%;
	display: flex;
}

.group-fields {
	height: 100%;
	width: 250px;
	display: flex;
	flex-direction: column;
}

.input-dual {
    display: flex;
    flex-direction: column;
    flex: 5;
}

.input-single {
    display: none;
    flex-direction: column;
    flex: 5;
}

div.input-field {
	border-radius: 20px;
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
    font-size: 16px;
}

div.input-field label, #fh {
	display: flex;
	align-items: center;
	float: left;
	width: 50%;
	padding: 0 0 0 20px;
	font-weight: 500;
    justify-content: flex-start;
}

div.input-field span {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 50%;
	padding-right: 20px;
}

div.input-field input {
	width: 65px;
	text-align: center;
	font-size: 16px;
	border-radius: 5px;
	border-color: black;
	border-width: 1px;
	border-style: solid;
}

div.input-field .fullheight-box > .fullheight-span {
    width: 100%;
    padding: 0;
    justify-content: center;
}

.fullheight-box {
	background-color: #FFFFFF;
	border: 1px solid black;
	border-radius: 5px;
	height: 20px;
	width: 65px;
}

.dropdown-select {
	justify-content: center;
}

select {
    appearance: none;
	-moz-appearance:none;
    -webkit-appearance:none;
	font-size: 16px;
	text-align: center;
    -webkit-rtl-ordering: logical;
    color: fieldtext;
    background-color: field;
    cursor: pointer;
    white-space: pre;
    border-color: black;
    border-image: initial;
    border-radius: 5px;
	padding: 0 10px;
}

.gradient-img {
	background-color: white;
	height: 100%;
	width: 200px;
	flex-grow: 1;
	display: flex;
    justify-content: flex-end;
	outline: 2px dashed var(--solyx-green);
	position: relative;
    margin: 0 5px;
}

.image-container {
	position: relative;
	width: 100%;
	overflow: hidden;
    display: inline-block;
    vertical-align: top;
    background-color: #FFFFFF;
}

#myCanvas {
    width: 200px;
    height: 500px
}


.scale-box {
	height: 100%;
	width: 215px;
	position: relative;
	overflow: hidden;
}

#scale-img-wrapper {
    display: contents;
}

.scale-img {
	width: auto;
	height: 100%;
	position: absolute;
    left: 0;
    bottom: 0;
}

.disclaimer {
	position: absolute;
	bottom: 0;
	width: 100%;
	font-size: 10px;
	text-align: center;
    padding-bottom: 1px;
}

.child-right {
	background-color: var(--main-color);
	border: 
		var(--border-thickness) 
		solid 
		var(--main-color);
	float: right;
	width: 20%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.solyxiq-logo {
    background-color: white;
    height: fit-content;
    display: flex;
}

.solyxiq-logo img {
    width: 100%;
    height: auto;
    padding: 4px 0;
}

.customer-content {
    width: 100%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
}

.company-input {
	color: var(--right-font-color);
    width: 100%;
    align-self: flex-start;
	font-size: 11px;
}

input[type="text"] {
    width: 100%;
    height: 19px;
    border: none;
    font-size: 13px;
    padding: .5px 4px;
}

div.ci1 {
	display: flex;
	max-width: 100%;
	align-items: center;
}

.ci1-1 img {
	max-width: 100%;
	height: auto;
}

div.ci1-2 {
	font-size: 9px;
	padding-left: 2px;
}

.company-input label, #email {
	padding: 0 0 2px;
}

.ci1,
.ci2,
.ci3,
.ci4,
.ci5-1,
.ci5-2,
.ci6{
	display: grid;
	padding-top: 2px;
}

.ci5 {
    display: flex;
}

.ci5-1 input {
	text-align: center;
}

.ci5-2 {
    margin: 0 0 0 4px;
}

.ci5-1, .ci5-2 {
    flex: 1;
}

input[type="date"] {
    height: 19px;
    border: none;
    display: block;
    text-align: center;
    font-size: 13px;
}

input[type='date']::-webkit-calendar-picker-indicator {
    background: transparent;
    color: transparent;
    cursor: pointer;
    height: 19px;
    width: 98px;
    position:fixed;
}

.note-input {
    width: 100%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.paragraph-input {
    resize: none;
    width: 100%;
    height: 100%;
    font-size: 13px;
    border: none;
    overflow: hidden;
    font-family: "Ubuntu Mono";
    padding: 2px 5px;
}

.surface-img {
    height: fit-content;
    display: flex;
    align-self: flex-end;
}

.surface-img img {
    width: 100%;
    height: auto;
}

footer {
	display: flex;
	justify-content: center;
	margin: 5px auto 0;
    font-size: 16px;
}

.ftr-alignment {
	display: flex;
	margin-top: 8px;
	text-align: center;
    gap: 20px;
}

.footer-options {
    display: flex;
    border: 3px solid var(--main-color);
    border-radius: 12px;
    padding: 8px 20px;
    justify-content: space-around;
    width: 500px;
}

.position-range {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.display-scale-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btnBox {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

input[type="button"], .btnSaveImg {
    background-color: var(--right-font-color);
    color: black;
    border: 3px solid var(--main-color);
    padding: 4px;
    border-radius: 12px;
	width: 250px;
	text-align: center;
}

input[type="button"]:hover, .btnSaveImg:hover {
    cursor: pointer;
    color: var(--right-font-color);
    background-color: var(--main-color);
    border-color: var(--right-font-color);
	outline: 1px solid var(--main-color);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 250px;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: var(--main-color);
    border: 1px solid black;
    height: 8px;
    border-radius: 6px;
}

input[type="range"]::-moz-range-track {
    background: var(--main-color);
    height: 8px;
    border-radius: 6px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: var(--solyx-green);
    height: 16px;
    width: 16px;
    border-radius: 8px;
    margin-top: -5px;
    border: 1px solid black;
}

input[type="range"]::-moz-range-thumb {
    background-color: var(--solyx-green);
    height: 16px;
    width: 16px;
    border-radius: 8px;
    border: none;
}

input[type="range"]:focus {
    outline: none;
  }
  
  input[type="range"]:hover::-webkit-slider-thumb {
    outline: 3px solid var(--solyx-green);
    outline-offset: 0.125rem;
  }
  
  input[type="range"]:hover::-moz-range-thumb {
    outline: 3px solid var(--solyx-green);
    outline-offset: 0.125rem;     
  }

.layout-position {
    width: 250px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

input:checked + .slider {
    background-color: var(--solyx-green);
    border: 1px solid black;
}

.slider.round {
    border-radius: 10px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border: 1px solid black;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider.round:before {
    border-radius: 50%;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border: 1px solid black;
    -webkit-transition: .25s;
    transition: .25s;
}

input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }

@media print {
    @page {
      size: landscape;
      margin: 19.2px;
    }
    .container {
        margin: 0;
        width: 1040px;
        height: 794px;
    }

    footer {
      display: none;
    }

}