html {
	font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
}
*{
    margin: 0;
    padding: 0;
}
.laserchart {
	padding-top: 10px;
}

.eye_container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}
.OD, .OS {
	width: 49%;
    position: relative;
}

.eye_container canvas{
    width: 100%;
}
.sos_container{
    position: relative;
}
.author_container{
    position: absolute;
    display: none;
    z-index: 2;
    background-color: #fff;
    padding: 3px 11px;
    border-radius: 5px;
    font-size: 13px;
    text-align: center;
}
.paint_tools{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.legend_item, .paint_tools .clear {
    border: solid 1px #000000;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1px 0px 1px 6px;
    border-style: solid;
    align-items: flex-start;
    font-size: 0.8em;
}
.legend_item, .paint_tools .text {
    border: solid 1px #000000;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1px 0px 1px 6px;
    border-style: solid;
    align-items: flex-start;
    font-size: 0.8em;
}
.paint_tools .history {
	border: solid 1px #000000;
	border-radius: 13px;
	width: 23px;
	height: 23px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
}
.paint_tools .history:hover {
	color: #FFFFFF;
	background: #000000;
}
.paint_tools .short_title {
    margin-right: 4px;
    padding: 3px;
    pointer-events: none;
}

.paint_tools .brush_size {
    pointer-events: none;
    width: 16px;
    padding-left: 4px;
    height: 20px;
    border-bottom-left-radius: 18px;
    border-top-right-radius: 5px;
    text-align: center;
    line-height: 18px;
    border-width: 1px;
    border-style: solid;
    margin-right: -1px;
    margin-top: -2px;
    background-color: #FFFFFF;
    color: #000000;
}
.legend_item.active {
    background-color: var(--data-bg) !important;
}
.legend_item.active.legend_item_dark .short_title{
	color: #FFFFFF;
}
.paint_tools .text.active{
    background-color: #000;
    color: #fff;
}
.paint_tools .clear.active{
    background-color: #000;
    color: #fff;
}
.crosshair {
    width: 20px;
    height: 20px;
    border: 2px solid red;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.new_label_textarea {
	font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	border: solid 1px #000000;
	border-radius: 5px;
}
.history_container{
    display: flex;
    align-items: center;
    width: 65px;
    justify-content: space-between;
    margin-right: 20px;
}