table {width: 100%;}
.wrapper {
   background-color: Wheat;
   width: 100%;
   border-radius: 3px;
   border: 2px solid lightgray;
   position: relative;
   overflow: hidden;
}
.container {
   border-top: 28px solid transparent;
   border-bottom: 10px solid transparent;
   height: 500px;
   overflow-x: hidden;
   overflow-y: scroll;
}
.textBox {
  background-color:#F0FFFF;
  width:95%;
  height:30px; 
  border:1px solid lightgrey;
  border-radius:5px;
  transition-duration: 0.3s;
}
.disabledTextBox {
  background-color:LightGray;
  width:95%;
  height:30px; 
  border:1px solid lightgrey;
  border-radius:5px;
}
.mediumBox {
  height:40px;  
  font: bold 16px Arial; 
}
.largerBox {
  height:50px;  
  font: bold 20px Arial; 
}
.textBox:hover, select.textBox:hover {border:1px solid CornflowerBlue;}
.textBox:focus {
  background-color:LightCyan;
  border:1px solid DodgerBlue;
}
select option:checked {
  background-color: lightskyblue !important; 
  color: #000000 !important;
}
.label {
  font: 14px Tahoma;
  color: black;
}
.mediumLabel {
  font: bold 16px Tahoma;
  color: black;
}
.ibLabel {
  font: italic bold 16px Tahoma;
  color: black;
}
.largeLabel {
  font: 20px Tahoma; 
  color: black;
}
.checkBox {
  width: 15px;
  height: 15px;
  transform: scale(1.2); 
}
.blueFont {
  color: DodgerBlue;
}
.checkLabel {font: 13px Tahoma;}
.sortingTab {border-spacing: 0;}
.sortingTab td {
  height: 35px;
  border-bottom: 1px solid gray;
  font: 11px Tahoma;
}
.sortingTab thead tr th div {top: 0; font: normal 11px Tahoma;}
.sortingTab thead tr th div,
.sortingTab tfoot tr td div {position: absolute;}
.dataList:hover {
  border: 1px solid gray;
  filter: brightness(85%);
}
.pageTitle {
  background-color: Wheat; 
  border-bottom: 2px solid lightgrey;
  height: 45px; 
  position: relative;
}
.tireTab {
  text-align: left;
  border-collapse: separate;
  border-spacing: 5px;
}
.pageContent {
  margin-left: 1%; 
  margin-right: 1%;
}
.square {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative; 
  top: 2px;
}
.tooltip {
  position:relative;
  padding: 0;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 1px;
  border: 1px solid gray;
}
.tooltip:hover {
  filter: brightness(85%);
  box-shadow: 0 6px 10px 0 rgba(0,0,0,0.24), 0 10px 24px 0 rgba(0,0,0,0.19);
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: #fff;
  padding: 2px 5px;
  text-align: center;
  position: absolute;
  z-index: 1;
  right: 125%;
  top: -20px;
}
.tooltip:hover:enabled .tooltiptext {
  visibility: visible;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%; 
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
}
.imgBtn {
  width: 100%;
  height: 100%;
}
.tireTitle th {height: 45px;}
.titleLabel {
  font: bold 18px Tahoma;
}
.marginTop {margin-top: 1%;}
.marginBottom {margin-bottom: 1%;}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.left {left: 1%;}
.right {right: 1%;}
.radioInput {
    margin-right: 10px;
   // margin-top: 10px;
    transform: scale(1.2);  
}
.boxShadow {
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.5);
    transition: all 0.2s ease-out;
}
.boxShadow:hover {
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.75);
}
