.menu {
  height: var(--containerHeight);
  display: flex;
  background: var(--white);
  border-bottom: 1px solid #ccc;
  z-index: 2;
}

.menu > .header {
  padding: 3px 0 5px 0;
  cursor: pointer;
  width: 110px;
  z-index: 1;
  line-height: 25px;
}

.menu > .header span {
  padding: 0 5px 0 5px;
  font-weight: 700;
}

.menu > .header > .item {
  height: var(--containerHeight);
  padding: 5px;
  visibility: hidden;
  background: var(--gray96);
  width: 230px;
}

.menu .header:hover .item {
  background-color: var(--gray96);
  visibility: visible;
  transition: 1s;
}
.menu .header:hover {
  background-color: var(--gray96);
  transition: 0.5s;
}
.menu .header .item:hover {
  background-color: var(--white);
  transition: 0.5s;
}

.menu .header .menuSeperator {
  visibility: hidden;
  width: 230px;
  border-top: 1px solid var(--gray80);
  border-bottom: 1px solid var(--white);
  z-index: 10;
}

.menu .header:hover .menuSeperator {
  visibility: visible;
  width: 230px;
  border-top: 1px solid var(--gray80);
  border-bottom: 1px solid var(--white);
  z-index: 10;
}

.toolbar {
  align-items: center;
  height: var(--containerHeight);
  display: flex;
  background: var(--white);
  border-bottom: 1px solid #ccc;
}

.toolbar img {
  width: 24px;
  margin: 2px;
  padding: 4px;
  border-radius: 8px;
}

.badge {
  width: 28px;
  height: 28px;
  border: 0px solid #ccc;
  position: relative;
  cursor: pointer;
}

.bagdecount {
  padding: 3px;
  height: 14px;
  width: auto;
  min-width: 14px;
  background: crimson;
  color: White;
  border-radius: 12px;
  position: absolute;
  right: 0px;
  font-size: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.badge img {
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0px;
  opacity: 0.4;
}

.badge img:hover {
  opacity: 0.5;
}

.footerbar {
  align-items: center;
  height: var(--containerHeight);
  display: flex;
  background: var(--gray96);
  border-top: 1px solid #ccc;
}

.footerbar img {
  width: 24px;
  padding: 5px;
}

.autoComplete {
  /*align-self:baseline; */
  /* padding-top:calc((var(--containerHeight) - var(--elementHeight))/2);*/
  height: var(--elementHeight);
  position: static;
  z-index: 1;
}

.autoComplete .resultsContainer {
  display: none;
  background: #fff;
  border: 1px solid var(--gray70);
  overflow-y: auto;
  position: relative;
  max-height: 200px;
  z-index: 2;
}

.autoComplete .resultsContainer .item {
  padding: 4px;
  cursor: pointer;
  border-bottom: 1px dashed var(--gray90);
}

.autoComplete .resultsContainer .item:hover {
  background-color: var(--gray94);
  transition: 0.9s;
}

.cover {
  top: 0px;
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.cover .modal {
  display: grid;
  grid-template-rows: 30px auto;
  background: #f2f2f2;
  position: absolute;
  padding: 10px;
  width: 75%;
  height: 75%;
  
   
}

.infoWindow {
  display: grid;
  grid-template-rows: 30px auto;
  height: auto;
  width: 400px;
  background: #f2f2f2;
  padding: 10px;
  position: absolute;
}

.carDashboard {
  position: absolute;
  top: 80px;
  left: 5px;
  z-index: 1;
  width: 400px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  display: grid;
  grid-template-columns: 80px 160px 140px;
  grid-template-rows: 95px 80px 340px 200px; /*85px 85px 85px 85px*/
  box-shadow: 0px 0px 00px #ccc;
}

/* 
 
.largAlert {
    width:60px;  
    height:60px;  
    z-index:1; 
    background:#fff; 
    border-radius:60px; 
    border:4px solid  #DD4B3E; 
    position:absolute; 
    left:15px; 
    transition: 1s;
   
    -webkit-transition:  height 1s,  width 1s  ease-in 1s, border-radius 1s;
}

.largAlert:hover { 
    width:280px;  
    height:400px;   
    background:#fff; 
    border-radius:15px; 
    border:4px solid var(--gray70); 
    position:absolute;   
    display: block; 
    padding: 15px; 
    transition:   width 1s, height 1s ease-out 1s, border-radius 1s;
   /* -webkit-transition: padding 300ms;
    -webkit-transition: width 300ms;
    -webkit-transition: height 300ms;*/
/*
}

 







.largAlert .title { opacity: 0; position: absolute; font-size: 13px; font-weight: bold; }

.largAlert:hover .title { 
    position: relative;
    opacity: 1; 
    transition: opacity 2s;
   
}

.largAlert .entry {  
      width: 1px;
      opacity: 0;
}

.largAlert .entry:hover {  
   color: var(--info);
   cursor: pointer;
}

.largAlert:hover .entry 
{
    width: auto;
    opacity: 1;
    transition: opacity 1s;  
    padding:5px;
    border-bottom: 1px dashed #ccc
}
 
.largAlert .entriesContainer {
    overflow-y:hidden;
    max-height:300px;
    opacity: 0;
    
}


.largAlert .entriesContainer:hover {
    overflow-y:auto;
    transition:   overflow-y 1s, max-height 1s ease-out 1s;
    max-height:300px;
    opacity: 1;
    transition:   opacity 1s
}



*/

.notifyCircle {
  bottom: 15px;
  padding: 5px;
  position: absolute;
  border: 3px solid #ccc;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.5s, height 0.5s, width 0.5s ease-in 0.5s,
    border-radius 0.5s;
  z-index: 2;
}

.notifyCircle:hover {
  border: 5px solid #ddd;
  cursor: pointer;
  display: block;
  width: 300px;
  height: 400px;
  border-radius: 12px;
  transition: width 0.3s, height 0.5s ease-out 0.5s, border-radius 0.5s;
}

.title {
  opacity: 0;
  width: 1px;
  font-size: 14px;
  font-weight: 600;
}

.notifyCircle:hover .title {
  margin-left: 10px;
  margin-right: 10px;
  opacity: 1;
  transition: opacity 1s;
}

.notifyCircle .content {
  border: 0px solid #000;
  height: 1px;
  width: 0px;
  overflow: hidden;
}

.notifyCircle:hover .content {
  margin: 10px;
  border: 0px solid #000;
  height: 340px;
  max-height: 310px;
  width: auto;
  overflow-y: auto;
  transition: width 0.3s, height 0.5s ease-out 0.5s, border-radius 0.5s,
    overflow-y 1s ease-in;
}

.notifyCircle .content .entry {
  padding: 5px;
  border-bottom: 1px dashed #ccc;
}

.notifyCircle .content .entry:hover {
  color: blue;
}

.arrow_box {
  padding: 15px;
  top: 50px;
  height: auto;
  width: 200px;
  z-index: 1;
  position: absolute;

  background: #fff;
  border: 2px solid #ccc;
  border-radius: 5px;
}

.arrow_box input {
  margin: 1px;
}

.arrow_box:after,
.arrow_box:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

/* .leftArrowPosition:after, .leftArrowPosition:before { 
left: var(--arrowLeftPosition);
}

.rightArrowPosition:after, .rightArrowPosition:before { 
    left: var(--arrowRightPosition);
    }
     */

.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.arrow_box:before {
  border-color: rgba(204, 204, 204, 0);
  border-bottom-color: #ccc;
  border-width: 9px;
  margin-left: -9px;
}

.sideViewContainer {
  position: absolute;
  width: 500px;
  height: 250px;
  background: #fff;
  top: 80px;
  right: 5px;
  z-index: 1;
  padding: 0px;
}

.sideViewContent {
  width:500px;
  grid-template-columns: 160px 160px 160px;
  grid-template-rows: 160px 160px 160px;
  grid-gap: 10px;
  height: auto;
}

.gridCanvas {
  width: 160px;
  height: 160px;
  border: 1px dashed #f2f2f2;
  display: flex;
  flex-direction: column;
}

.gridCanvas div {
  font-size: 36px;
  height: 40px;
  font-weight: bold;
}

.gridCanvas img {
  width: 40px;
  padding: 10px;
  border-radius: 10px;
  background: #ccc;
  filter: invert(5) hue-rotate(44) contrast(43);
}

.sideViewTag {
  position: absolute;
  left: -35px;
  height: 120px;
  width: 35px;
  background: var(--info);
  color: white;
  writing-mode: vertical-rl;
  top: 45%;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-180deg);
  text-transform: uppercase;
  cursor: pointer;
  color: var(--gray94);
}
