
.menuHighlight{
	color: blue;
	background-color: red;
}

/* this is for userSetupMenu must keep it */
.flexMenu{
	display: flex;
	flex-direction: column;
}

.flexMenu>a{
	text-decoration: none;
	cursor: pointer;
	padding: 5 15px;
}

.flexMenu>a:hover{
	background-color: lightgray;
}

/* Quotation */

.quoteStatusSelection{
    cursor: pointer; 
    padding: 0px 8px;
}

.quoteStatusSelection:hover{
    background-color: #ccc;
}

/* CSS Document */

.ai-border{

	border-top: 1px solid #bbb;
	xborder-left: 1px solid #bbb;
	xborder-right: 1px solid #bbb;
}

.ai-border-left{

	border-left: 1px solid #bbb;
}	

.ai-border-right{

	border-right: 1px solid #bbb;
}	

.ai-border-bottom{

	border-bottom: 1px solid #bbb;
}	

.ai-grey{
	background-color: #ccc;
}

/* pagination */

.pagination {
	display: inline-block;
}

.pagination a {
	color: black;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color .3s;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;	
}

.pagination a.active {
	background-color: #4CAF50;
	color: white;
	border-top: 1px solid #4CAF50;
	border-left: 1px solid #4CAF50;
	border-right: 1px solid #4CAF50;
	border-bottom: 1px solid #4CAF50;
}					

.pagination a:first-child {
	border-left: 1px solid #ddd;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.pagination a:last-child {
	border-right: 1px solid #ddd;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

/* Freight Switch */

.frSwitch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 30px;
}

.frSwitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.frSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f44336;
  -webkit-transition: .4s;
  transition: .4s;
}

.frSlider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .frSlider {
  background-color: #2196F3;
}

input:focus + .frSlider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .frSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.frSlider.frRound {
  border-radius: 5px;
}

.frSlider.frRound:before {
  border-radius: 10%;
}

/* The switch - the box around the slider */
.teamSwitch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.teamSwitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.teamSlider {
  position: absolute;
  top: -1;
  left: 0;
  right: 2;
  bottom: 0;
  background-color: #f44336;
  -webkit-transition: .4s;
  transition: .4s;
}

.teamSlider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .teamSlider {
  background-color: #2196F3;
}

input:focus + .teamSlider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .teamSlider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.teamSlider.teamRound {
  border-radius: 4px;
}

.teamSlider.teamRound:before {
  border-radius: 2px;
}

/* Menu item full-width left-aligned */
.menu-full { width: 100% !important; text-align: left !important; display: block !important; }

