
/*
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
─██████─────────██████████████─██████████████─██████──██████─██████████████─██████████████─██████████████───██████─────────██████████████─
─██░░██─────────██░░░░░░░░░░██─██░░░░░░░░░░██─██░░██──██░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██───██░░██─────────██░░░░░░░░░░██─
─██░░██─────────██░░██████████─██░░██████████─██░░██──██░░██─██████░░██████─██░░██████░░██─██░░██████░░██───██░░██─────────██░░██████████─
─██░░██─────────██░░██─────────██░░██─────────██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██──██░░██───██░░██─────────██░░██─────────
─██░░██─────────██░░██████████─██░░██████████─██░░██████░░██─────██░░██─────██░░██████░░██─██░░██████░░████─██░░██─────────██░░██████████─
─██░░██─────────██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─────██░░██─────██░░░░░░░░░░██─██░░░░░░░░░░░░██─██░░██─────────██░░░░░░░░░░██─
─██░░██─────────██░░██████████─██████████░░██─██░░██████░░██─────██░░██─────██░░██████░░██─██░░████████░░██─██░░██─────────██░░██████████─
─██░░██─────────██░░██─────────────────██░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░██────██░░██─██░░██─────────██░░██─────────
─██░░██████████─██░░██████████─██████████░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░████████░░██─██░░██████████─██░░██████████─
─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░██──██░░██─────██░░██─────██░░██──██░░██─██░░░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░██─
─██████████████─██████████████─██████████████─██████──██████─────██████─────██████──██████─████████████████─██████████████─██████████████─
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
 */





/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* LESH TABLE */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

:root {
  --dark_color: #00313C;
  --light_color: #00A499;
  --bright_color1: #FCB513;
  --bright_color2: #F26321;
}






/* --------------------------------------------------------------------------------------------------------- */
/* .leshtable table {text-align: center; margin-left: 10px; margin-right: 10px; border-collapse: collapse;} */
.leshtable table {margin: 0 auto; border-collapse: collapse;}
.leshtable table {width: 100%}


.leshtable th {cursor: pointer; font: 12px Roboto; color: white; background-color: #00313C; padding: 5px; vertical-align: text-top; text-align: left; padding-right: 15px;}
.leshtable th div { display: flex; text-wrap: nowrap; }

/* show a flashing animation when users click on a row */
.leshtable tbody > tr:active {
  animation-name: leshtable-click-fade;
  animation-duration: 0.1s;
}

@keyframes leshtable-click-fade {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

.expanded_text td {
  white-space: pre-wrap; /* Correct property to preserve whitespaces and wrap text */
  overflow-wrap: break-word;
  text-align: left;
}

.leshtable td {font: 12px Roboto; color: #00313C; border: none; border-bottom: 1px solid #ddd; padding: 5px; text-align: left;}
.leshtable td:first-child {border-right: 1px solid #ddd; max-width: 300px;}

/* HOVER over Row ---- now an option */
/* .leshtable tr:hover td {color: white; background-color: var(--light_color);} */
/* Make TEXT Unselectable --- gets annoying everytime you click on it */


.leshtable th {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
/* --------------------------------------------------------------------------------------------------------- */






/*###################################################### */
/* New Option in 2022 */
/*###################################################### */
/* .leshtable td {
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} */

.leshtable td {
  max-width: 200px;
}


.doNOTshow_me_all_text td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leshtable tr.selected {
  background-color: rgba(15, 91, 111, 0.5);
}

.leshtable tr.selected td {
  color: white;
}
/*###################################################### */





/* ------------------------------------ */
.leshtable {
	display: block;

	align-items: center;
	text-align: center;
	justify-content: center;

	/* This is for the OVERLAY only */
  position: relative;

	/* background-color: green; */
}
/* ------------------------------------ */



/* ------------------------------------ */
.leshtable_RemoveX {
	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--bright_color2);
	/* padding: 6px; */
	font-size: 12px;

	width: 15px;
	margin: 0 auto;
	float: right;

	/* Make TEXT Unselectable --- gets annoying everytime you click on it */
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

}
/* ------------------------------------ */






/* ------------------------------------ */

.leshtable_Sort {
	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--bright_color2);
	font-size: 12px;

	width: 15px;
	margin: 0 auto;
	float: right;
}

.leshtable_Sort_up,
.leshtable_Sort_down {
	display: none;

	font-family: 'Material Icons';
	color: chartreuse;
	font-size: 12px;
	font-weight: bold;

	width: 15px;
	margin: 0 auto;
	float: right;
}
/* ------------------------------------ */







.leshtable_counttotal {

  /* display: inline;
	position: absolute;
	right: 0; */

	text-align: right;
  vertical-align: top;
	line-height: 10px;
	padding-top: 10px;
  order: 2;
  text-wrap: nowrap;
}

.leshtable_counttotal_text {
	color: var(--bright_color2);
	font: 10px Roboto;
}










/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* Pagination */
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
.leshtable_pagination {
	text-align: center;
  text-wrap: nowrap;
  /* display: inline-block; */
}

.spacer {
  flex: 1;
}

.leshtable_footer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.leshtable_pagination_first,
.leshtable_pagination_prior,
.leshtable_pagination_next,
.leshtable_pagination_last {
	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--light_color);
	/* color: var(--bright_color2); */
	/* color: var(--bright_color1); */
	/* color: grey; */

	font-size: 25px;
	vertical-align: middle;

	/* Make TEXT Unselectable --- gets annoying everytime you click on it */
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}


.leshtable_pagination_prior{padding-right: 15px;}
.leshtable_pagination_next{padding-left: 15px;}


.leshtable_pagination_CURRENT {
	font-family: 'Roboto';
	color: var(--light_color);
	/* color: var(--bright_color2); */
	/* color: var(--bright_color1); */
	/* color: grey; */

	font-size: 12px;
	vertical-align: middle;
}





.leshtable_pagination_input {
	position: relative;

	/* bottom: 5px; */
  /* height: 10px; */
  bottom: 11px;
  height: 15px;

	width: 60px;

  border: none;
  background-color: transparent;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 0px;

  font-family: 'Roboto';
  font-size: 10px;
  /* font-size: 11px; */
  color: var(--light_color);

	text-align: center;
}

.leshtable_pagination_input::placeholder {
  opacity: 0.5;
  color: #CCCCCC;
  background-color: transparent !important;
}

.leshtable_pagination_input:focus {
  box-shadow: none !important;
  outline: none !important;
  border-bottom: 1px solid var(--dark_color);
}



.leshtable_pagination_inputGO {
	position: relative;
	/* bottom: 5px; */
  bottom: 11px;

	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--light_color);

	margin: 0 auto;

	vertical-align: bottom;
	line-height: 14px;
	font-size: 14px;

	display: none;

	/* Make TEXT Unselectable --- gets annoying everytime you click on it */
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

}
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/




















/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* Toolbar */
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/

/* ------------------------------------ */
.leshtable_toolbar {
	text-align: left;
	/* text-align: center; */

	/* display: inline-block; */

	padding-left: 20px;
	padding-bottom: 5px;

	/* background-color: red; */


	/* Make TEXT Unselectable --- gets annoying everytime you click on it */
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}





.leshtable_toolbar_Expand,
.leshtable_toolbar_Reset,
.leshtable_toolbar_Numrows,
.leshtable_toolbar_Download {
	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--light_color);

	font-size: 16px;
	vertical-align: middle;

	padding-right: 5px;
}
/* ------------------------------------ */






/* ------------------------------------ */
.leshtable_toolbar_Search {
	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--light_color);
	font-size: 16px;
	vertical-align: middle;
	padding-right: 5px;
}




.leshtable_toolbar_Searchbox {
	/* display: inline-block; */
	display: none;
}


/* --------------------------------------------------------------- */
/* Color of Input Boxes ---> Focus & Hover */
/* --------------------------------------------------------------- */
.leshtable_toolbar_Searchbox_input {
	margin-left: 3px;

	font-size: 12px;
	/* width: 200px; */
	width: 50px;

	display: inline;
	font-size: 12px Roboto;

	border: none;
	border-bottom: 1px solid #f2f2f2;
  border-radius: 0px;

  color: var(--dark_color);
  background-color: transparent;

	transition: width 0.4s ease-in-out;
}

.leshtable_toolbar_Searchbox_input:focus {
  box-shadow: none !important;
  border-color: var(--dark_color) !important;
  outline: none !important;

	width: 200px;
}

.leshtable_toolbar_Searchbox_input:hover {
  border-color: var(--dark_color) !important;
}
/* --------------------------------------------------------------- */



/* --------------------------------------------------------------- */
/* Select Box --> Column Name */
/* --------------------------------------------------------------- */

.leshtable_Searchbox_selectdiv {
  position: relative;
  display: inline;
}


.leshtable_Searchbox_columns_Arrow {
	font-family: 'Material Icons';
	color: crimson;
	font-size: 12px;
	font-weight: bold;

  display: inline;

  position: absolute;
  right: 5px;
  /* top: 5px; */
  line-height: 26px;

  pointer-events: none;
}




.leshtable_toolbar_Searchbox_columns {
	border: none;
  border-radius: 3px;
	padding: 4px;

  font-size: 12px;
	color: #fff;
  background-color: var(--dark_color);


	/* background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="15" viewBox="0 0 24 24" width="15"><path fill="none" d="M0 0h24v24H0z"/><path fill="red" d="M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z"></path></svg>') no-repeat right var(--dark_color); */

	/* background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 24 24"><path fill="%232196F3" d="M 5,3L 19,3L 20.7359,6L 20.7304,6C 20.9018,6.29149 21,6.63428 21,7L 21,19C 21,20.1046 20.1046,21 19,21L 5,21C 3.89543,21 3,20.1046 3,19L 3,7C 3,6.638 3.09618,6.29846 3.26437,6L 3.26135,6L 5,3 Z M 5.57294,4L 5,5L 5,5L 19,5L 18.4303,4L 5.57294,4 Z M 7,12L 12,17L 17,12L 14,12L 14,10L 10,10L 10,12L 7,12 Z "></path></svg>') no-repeat right var(--dark_color); */

	padding-right: 19px;

	-webkit-appearance: none !important; /* Safari */
  	-moz-appearance: none !important;  /* Old versions of Firefox */
			-ms-appearance: none !important; /* Internet Explorer/Edge */
        appearance: none !important;
}



.leshtable_toolbar_Searchbox_columns:focus {
	box-shadow: none !important;
	outline: none !important;
}
	/* --------------------------------------------------------------- */





/* ------------------------------------ */
.leshtable_toolbar_Searchbox_X {
	/* position: relative;
	left: -20px; */

	padding-right: 5px;

	cursor: pointer;
	font-family: 'Material Icons';

	/* color: grey; */
	color: var(--light_color);

	font-size: 16px;
	vertical-align: middle;
}

.leshtable_toolbar_Searchbox_Plus {
	padding-right: 5px;
	cursor: pointer;
	font-family: 'Material Icons';
	color: var(--light_color);
	font-size: 16px;
	vertical-align: middle;
}

/* ------------------------------------ */









/* ------------------------------------ */
.leshtable_toolbar_numrowschoose {
	width: 150px;
	height: 15px;

	/* display: inline-block; */
	display: none;

	margin-bottom: 3px;
}

.leshtable_toolbar_numrowschoose button {
  background-color: var(--light_color);
  border: 1px solid green;
  color: white;

  cursor: pointer;
  float: left;

	font-size: 12px;

	/* padding-top: 5px;
	padding-bottom: 5px; */
}

/* Clear floats (clearfix hack) */
/* .leshtable_toolbar_numrowschoose:after {
  content: "";
  clear: both;
  display: table;
} */

.leshtable_toolbar_numrowschoose button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.leshtable_toolbar_numrowschoose button:hover {
  background-color: var(--dark_color);
}

.leshtable_toolbar_numrowschoose button:first-child {border-radius: 3px 0 0 3px}
.leshtable_toolbar_numrowschoose button:last-child {border-radius: 0 3px 3px 0}
/* ------------------------------------ */

/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/





















/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* Tooltip */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.tooltip {
  position: relative;
  display: inline-block;

  opacity: 1 !important;
  z-index: 0 !important;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 80px;

  /* background-color: black; */
	background-color: var(--light_color);
  text-align: center;
	font-family: "benton-sans", sans-serif;
  font-size: 11px;
	color: #fff;



  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  /* bottom: 100%; */
	bottom: 130%;
  left: 50%;
  margin-left: -50px;

  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */











/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* Sorting --- too many rows alert ---> overlay */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.overlay {
  /* Sit on top of the page content */
  /* position: fixed;  */
  position: absolute;

  /* Hidden by default */
  display: none;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  text-align:center;

  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */

  /* background-color: grey; */
	/* border-radius: 10px 10px 10px 10px; */
	background-color: transparent;

  /* opacity: 0.2; */
	opacity: 1;

  z-index: 4; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */

}


/* Watermark */
.overlay::after {

content: 'Too many rows to Sort \A Reduce to less than 2,000 rows to Sort \A \A Click to Close';

/* need this to wrap the text line */
white-space: pre;

font-size: 14px;

color: #fff;
background-color: var(--bright_color2);
border: 3px solid var(--dark_color);
border-radius: 10px;
padding: 20px;

margin: 0;
position: absolute;

/* top: 50%; */
top: 60px;
left: 50%;
transform: translate(-50%, -50%);
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */



























































/* ----------------------------------------------------------------------------------- */
.boxlabelinputbox {
  height: 40px;
  padding-top: 15px;
  padding-left: 5px;

  border: none;
  background-color: transparent;

  border-bottom: 1px solid #f2f2f2;
  border-radius: 0px;

  font-family: "benton-sans", sans-serif;
  font-size: 13px;
  color: var(--dark_color);
}

.boxlabelinputbox::placeholder {
  opacity: 0.7;
  color: #CCCCCC;
  background-color: transparent !important;
}

.boxlabelinputbox:focus {
  box-shadow: none !important;
  outline: none !important;
  border-bottom: 1px solid var(--dark_color);
}




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Boxlabel treatment */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.boxlabelinputbox.boxlabelshow {
border: 1px solid var(--light_color);
border-radius: 5px;
}

.boxlabelinputbox.boxlabelshowRED {
border: 1px solid red;
border-radius: 5px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */








/* ---------------------------------------------- */
.boxlabel_container {
  position: relative;
  /* display: block; */
  display: inline-block;

  padding: 5px;
  margin-top: 2px;
}


boxlabel {
  margin-left: 5px;

  padding-left: 5px;
  padding-right: 5px;

  background-color: #ffffff;
  color: var(--light_color);
  font-family: "benton-sans", sans-serif;
  font-size: 11px;

  top: -1px;
  left: 11px;
  position: absolute;
  z-index: 3;
  display: none;
}
/* ---------------------------------------------- */










/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* Input Box */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.inputbox {
  display: inline;
  margin-top: 2px;
  padding-left: 5px;

  font-size: 12px;
  font-family: "benton-sans", sans-serif;

  border: none;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 0px;

  color: var(--dark_color);
  background-color: transparent;
}

/* --------------------------------------------------------------- */
/* Color of Input Boxes ---> Focus & Hover */
/* --------------------------------------------------------------- */
.inputbox:focus {
  box-shadow: none !important;
  border-color: var(--dark_color) !important;
  outline: none !important;
}

.inputbox:hover {
  border-color: var(--dark_color) !important;
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.leshtable_checkbox {
  cursor: pointer;
  transform: scale(1.5);
  accent-color: #26A499;
}

.leshtable_select_all_checkbox {
  cursor: pointer;
  transform: scale(1.5);
  accent-color: #26A499;
}

.action-button-leshtable {
  display: block;
  width: fit-content;
  padding: 5px;
  margin-top: 10px;
  background-color: #26A499;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 12px;
}

.action-button-leshtable:focus {
  outline: none !important;
}

.no_sort_row td {
  color: white;
  background-color: #0d5b6f;
}